boards: esp_wrover_kit: 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-07 17:02:24 -03:00 committed by Carles Cufí
commit 971fed483a

View file

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