summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorFelipe Balbi <balbi@ti.com>2011-06-27 15:56:32 +0300
committerGreg Kroah-Hartman <gregkh@suse.de>2011-07-01 14:31:14 -0700
commitded1ddbf92ee2c8f04af7fe805e1074be5d41f7f (patch)
tree8b88a606a40b28ff7745d319d7829d9684219a2c /arch
parent019f976e8f268a63b2fcbb662aa2f77f6b07bac6 (diff)
downloadlinux-ded1ddbf92ee2c8f04af7fe805e1074be5d41f7f.tar.gz
linux-ded1ddbf92ee2c8f04af7fe805e1074be5d41f7f.tar.xz
linux-ded1ddbf92ee2c8f04af7fe805e1074be5d41f7f.zip
usb: musb: omap: always create musb device
there's no point in not creating that device always. It's simpler to always create, than to keep changing that stupid ifdef. Signed-off-by: Felipe Balbi <balbi@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-omap2/usb-musb.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/arch/arm/mach-omap2/usb-musb.c b/arch/arm/mach-omap2/usb-musb.c
index c7ed540d868d..a65145b02a55 100644
--- a/arch/arm/mach-omap2/usb-musb.c
+++ b/arch/arm/mach-omap2/usb-musb.c
@@ -33,8 +33,6 @@
#include <plat/omap_device.h>
#include "mux.h"
-#if defined(CONFIG_USB_MUSB_OMAP2PLUS) || defined (CONFIG_USB_MUSB_AM35X)
-
static struct musb_hdrc_config musb_config = {
.multipoint = 1,
.dyn_fifo = 1,
@@ -175,11 +173,3 @@ void __init usb_musb_init(struct omap_musb_board_data *musb_board_data)
if (cpu_is_omap44xx())
omap4430_phy_init(dev);
}
-
-#else
-void __init usb_musb_init(struct omap_musb_board_data *board_data)
-{
- if (cpu_is_omap44xx())
- omap4430_phy_init(NULL);
-}
-#endif /* CONFIG_USB_MUSB_SOC */