forked from kofal.net/zmk
Replaced with RegExp: /(?<!const )(struct device \*)/g See: https://docs.zephyrproject.org/latest/releases/release-notes-2.4.html PR: #467
9 lines
251 B
C
9 lines
251 B
C
#include <device.h>
|
|
#include <init.h>
|
|
#include <kernel.h>
|
|
#include <settings/settings.h>
|
|
|
|
static int zmk_settings_init(const struct device *_arg) { return settings_load(); }
|
|
|
|
SYS_INIT(zmk_settings_init, APPLICATION, CONFIG_APPLICATION_INIT_PRIORITY);
|