aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap1/include/mach/usb.h
diff options
context:
space:
mode:
authorAaro Koskinen <aaro.koskinen@iki.fi>2018-12-04 19:57:42 +0200
committerTony Lindgren <tony@atomide.com>2018-12-11 08:14:23 -0800
commitc7b7b5cbd0c859b1546a5a3455d457708bdadf4c (patch)
tree195c869933c0f23693c59ecd8f77ded1b0133e53 /arch/arm/mach-omap1/include/mach/usb.h
parentLinux 4.19 (diff)
downloadlinux-dev-c7b7b5cbd0c859b1546a5a3455d457708bdadf4c.tar.xz
linux-dev-c7b7b5cbd0c859b1546a5a3455d457708bdadf4c.zip
ARM: OMAP1: fix USB configuration for device-only setups
Currently we do USB configuration only if the host mode (CONFIG_USB) is enabled. But it should be done also in the case of device-only setups, so change the condition to CONFIG_USB_SUPPORT. This allows to use omap_udc on Palm Tungsten E. Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi> Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap1/include/mach/usb.h')
-rw-r--r--arch/arm/mach-omap1/include/mach/usb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap1/include/mach/usb.h b/arch/arm/mach-omap1/include/mach/usb.h
index 77867778d4ec..5429d86c7190 100644
--- a/arch/arm/mach-omap1/include/mach/usb.h
+++ b/arch/arm/mach-omap1/include/mach/usb.h
@@ -11,7 +11,7 @@
#include <linux/platform_data/usb-omap1.h>
-#if IS_ENABLED(CONFIG_USB)
+#if IS_ENABLED(CONFIG_USB_SUPPORT)
void omap1_usb_init(struct omap_usb_config *pdata);
#else
static inline void omap1_usb_init(struct omap_usb_config *pdata)