diff options
author | Felipe Balbi <felipe.balbi@nokia.com> | 2010-02-17 17:09:29 -0500 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2010-02-19 18:22:17 -0500 |
commit | f9828552b945b9522f15f9eccea6d6df0af49753 (patch) | |
tree | 260fbbd0859f3287f84f2f0da684bf942505e091 /arch/arm/mach-omap2/usb-musb.c | |
parent | 1a4f4637492f6a5977dd21b0026da09cd269c4a9 (diff) |
arm: omap: musb: ioremap only what's ours
omap3430 TRM says the OTG address space is 4k, not 8k.
Cc: linux-usb@vger.kernel.org
Signed-off-by: Felipe Balbi <felipe.balbi@nokia.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/usb-musb.c')
-rw-r--r-- | arch/arm/mach-omap2/usb-musb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/usb-musb.c b/arch/arm/mach-omap2/usb-musb.c index a80441dd19b8..ba71f762db71 100644 --- a/arch/arm/mach-omap2/usb-musb.c +++ b/arch/arm/mach-omap2/usb-musb.c | |||
@@ -152,7 +152,7 @@ void __init usb_musb_init(void) | |||
152 | musb_resources[0].start = OMAP243X_HS_BASE; | 152 | musb_resources[0].start = OMAP243X_HS_BASE; |
153 | else | 153 | else |
154 | musb_resources[0].start = OMAP34XX_HSUSB_OTG_BASE; | 154 | musb_resources[0].start = OMAP34XX_HSUSB_OTG_BASE; |
155 | musb_resources[0].end = musb_resources[0].start + SZ_8K - 1; | 155 | musb_resources[0].end = musb_resources[0].start + SZ_4K - 1; |
156 | 156 | ||
157 | /* | 157 | /* |
158 | * REVISIT: This line can be removed once all the platforms using | 158 | * REVISIT: This line can be removed once all the platforms using |