Skip to content

Commit a77288f

Browse files
joelspadinpetejohanson
authored andcommitted
fix: Update settings reset for Zephyr 3.5
1 parent 14b06a3 commit a77288f

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

app/src/settings/reset_settings_on_start.c

+1-7
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,10 @@
44
* SPDX-License-Identifier: MIT
55
*/
66

7-
#include <zephyr/device.h>
87
#include <zephyr/init.h>
98

109
#include <zmk/settings.h>
1110

12-
static int reset_settings_init(const struct device *dev) {
13-
ARG_UNUSED(dev);
14-
return zmk_settings_erase();
15-
}
16-
1711
// Reset after the kernel is initialized but before any application code to
1812
// ensure settings are cleared before anything tries to use them.
19-
SYS_INIT(reset_settings_init, POST_KERNEL, CONFIG_APPLICATION_INIT_PRIORITY);
13+
SYS_INIT(zmk_settings_erase, POST_KERNEL, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT);

0 commit comments

Comments
 (0)