boards: odroid_go: change init priority

making board initialization depend on
GPIO_INIT_PRIORITY and setting the
initialization level to APPLICATION.

Signed-off-by: Glauber Maroto Ferreira <glauber.ferreira@espressif.com>
This commit is contained in:
Glauber Maroto Ferreira 2022-03-21 17:45:58 -03:00 committed by Carles Cufí
commit d99f01808a

View file

@ -25,4 +25,4 @@ static int board_odroid_go_init(const struct device *dev)
return 0;
}
SYS_INIT(board_odroid_go_init, PRE_KERNEL_2, CONFIG_PINMUX_INIT_PRIORITY);
SYS_INIT(board_odroid_go_init, APPLICATION, CONFIG_GPIO_INIT_PRIORITY);