summaryrefslogtreecommitdiff
path: root/drivers/usb
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-05 15:44:26 -0700
committerTom Rini <trini@konsulko.com>2023-02-10 07:41:40 -0500
commit0ff8bb872423f7433b0165cbc10d23be1771af7c (patch)
tree641dacbf38275f69a5a587714a5a95feb86886d7 /drivers/usb
parent91b614eef642959ab77c37dc1b7add2e6d02772c (diff)
Correct SPL uses of USB_MUSB_HOST
This converts 2 usages of this option to the non-SPL form, since there is no SPL_USB_MUSB_HOST defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/musb-new/omap2430.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/musb-new/omap2430.c b/drivers/usb/musb-new/omap2430.c
index 42e7abddbc..482dfdc6be 100644
--- a/drivers/usb/musb-new/omap2430.c
+++ b/drivers/usb/musb-new/omap2430.c
@@ -231,7 +231,7 @@ static int omap2430_musb_probe(struct udevice *dev)
otg_board_data = &plat->otg_board_data;
- if (CONFIG_IS_ENABLED(USB_MUSB_HOST)) {
+ if (IS_ENABLED(CONFIG_USB_MUSB_HOST)) {
struct musb_host_data *host = dev_get_priv(dev);
struct usb_bus_priv *priv = dev_get_uclass_priv(dev);