aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-s3c2410/mach-n30.c
diff options
context:
space:
mode:
authorPinkava J <Jiri.Pinkava@vscht.cz>2010-05-06 15:19:19 +0200
committerBen Dooks <ben-linux@fluff.org>2010-05-07 09:41:31 +0900
commitbe7c4cf632f47d798ad6a27da15de0195ddf6f30 (patch)
tree5f72dc0897049099363291dfcb43a3f422026db8 /arch/arm/mach-s3c2410/mach-n30.c
parentff3c25fa1b7f0a3c7b112c25af6d259cb8c59bc1 (diff)
downloadkernel_samsung_crespo-be7c4cf632f47d798ad6a27da15de0195ddf6f30.tar.gz
kernel_samsung_crespo-be7c4cf632f47d798ad6a27da15de0195ddf6f30.tar.bz2
kernel_samsung_crespo-be7c4cf632f47d798ad6a27da15de0195ddf6f30.zip
ARM: n30: fix: suspended wrong USB port on Acer n35
There is bug in USB setup code for Acer n35 (it is related directly to s3c2410, see doc). We want suspend host port (is not connected) but device port should be active. Signed-off-by: Jiri Pinkava <jiri.pinkava@vscht.cz> Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/mach-s3c2410/mach-n30.c')
-rw-r--r--arch/arm/mach-s3c2410/mach-n30.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c2410/mach-n30.c b/arch/arm/mach-s3c2410/mach-n30.c
index 684710f8814..1b635fda4ea 100644
--- a/arch/arm/mach-s3c2410/mach-n30.c
+++ b/arch/arm/mach-s3c2410/mach-n30.c
@@ -532,7 +532,7 @@ static void __init n30_init(void)
s3c2410_modify_misccr(S3C2410_MISCCR_USBHOST |
S3C2410_MISCCR_USBSUSPND0 |
S3C2410_MISCCR_USBSUSPND1,
- S3C2410_MISCCR_USBSUSPND1);
+ S3C2410_MISCCR_USBSUSPND0);
platform_add_devices(n35_devices, ARRAY_SIZE(n35_devices));
}