From c9838ec5451bf78ee191dbd65682e29253dbf18f Mon Sep 17 00:00:00 2001 From: Yegor Yefremov Date: Mon, 22 Sep 2025 15:05:57 +0200 Subject: [PATCH] usb: musb-new: fix ti-musb dependencies If OF_CONTROL is on, ti-musb.c registers a "ti-musb-wrapper" driver that requires UCLASS_MISC. Hence, select MISC if both OF_CONTROL and USB_MUSB_TI are selected. Signed-off-by: Yegor Yefremov --- drivers/usb/musb-new/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/usb/musb-new/Kconfig b/drivers/usb/musb-new/Kconfig index 0e2b2b5fb85..f8daaddc657 100644 --- a/drivers/usb/musb-new/Kconfig +++ b/drivers/usb/musb-new/Kconfig @@ -40,6 +40,7 @@ config USB_MUSB_DA8XX config USB_MUSB_TI bool "Enable TI OTG USB controller" depends on AM33XX + select MISC if OF_CONTROL select USB_MUSB_DSPS help Say y here to enable support for the dual role high -- 2.47.3