From 85ee63d6a5472285ccb176112f96489a69a7a6a7 Mon Sep 17 00:00:00 2001 From: Igor Opaniuk Date: Tue, 22 Dec 2020 18:37:47 +0200 Subject: colibri-imx8x: fix gpio reserved error message This prevents messages like: gpio@5d0d0000: get_value: error: gpio GPIO5_9 not reserved when CONFIG_DM_GPIO is enabled. Signed-off-by: Igor Opaniuk --- board/toradex/colibri-imx8x/colibri-imx8x.c | 1 + 1 file changed, 1 insertion(+) diff --git a/board/toradex/colibri-imx8x/colibri-imx8x.c b/board/toradex/colibri-imx8x/colibri-imx8x.c index a7bdf27ef6..da0da1829f 100644 --- a/board/toradex/colibri-imx8x/colibri-imx8x.c +++ b/board/toradex/colibri-imx8x/colibri-imx8x.c @@ -174,6 +174,7 @@ int board_init(void) #ifdef CONFIG_MXC_GPIO board_gpio_init(); #endif + gpio_request(USB_CDET_GPIO, "usb_cdet"); #ifdef CONFIG_SNVS_SEC_SC_AUTO { -- cgit v1.2.3