diff --git a/zephyr/include/rtos/init.h b/zephyr/include/rtos/init.h index f80b97ab6ffa..22341613f06c 100644 --- a/zephyr/include/rtos/init.h +++ b/zephyr/include/rtos/init.h @@ -9,9 +9,8 @@ #include #define SOF_MODULE_INIT(name, init) \ -static int zephyr_##name##_init(const struct device *dev) \ +static int zephyr_##name##_init(void) \ { \ - ARG_UNUSED(dev); \ init(); \ return 0; \ } \