drivers: display: move to POST_KERNEL

There's no need to use APPLICATION level here.

Signed-off-by: Gerard Marull-Paretas <gerard@teslabs.com>
This commit is contained in:
Gerard Marull-Paretas 2023-09-13 15:06:55 +02:00 committed by Carles Cufí
commit 222409fa49
2 changed files with 2 additions and 2 deletions

View file

@ -142,7 +142,7 @@ static const struct display_driver_api dummy_display_api = {
DEVICE_DT_INST_DEFINE(n, &dummy_display_init, NULL, \
&dd_data_##n, \
&dd_config_##n, \
APPLICATION, \
POST_KERNEL, \
CONFIG_DISPLAY_INIT_PRIORITY, \
&dummy_display_api); \

View file

@ -374,7 +374,7 @@ static const struct display_driver_api sdl_display_api = {
DEVICE_DT_INST_DEFINE(n, &sdl_display_init, NULL, \
&sdl_data_##n, \
&sdl_config_##n, \
APPLICATION, \
POST_KERNEL, \
CONFIG_DISPLAY_INIT_PRIORITY, \
&sdl_display_api); \
\