diff options
author | Marc Zyngier <maz@misterjones.org> | 2010-02-18 15:29:24 -0500 |
---|---|---|
committer | Eric Miao <eric.y.miao@gmail.com> | 2010-03-01 18:40:58 -0500 |
commit | 7ff27dfa6e484ff5d901ec075a623c06c46d7a0f (patch) | |
tree | 43a0c72f09dc10ef220744a6cd0939796aa5af1c /arch/arm/mach-pxa | |
parent | 662b0836a667158284c8a4a091de745fd5637ff1 (diff) |
[ARM] pxa/zeus: Correct the USB host initialisation flags
Signed-off-by: Amit Walambe <amit.walambe@eurotech.com>
Signed-off-by: Marc Zyngier <maz@misterjones.org>
Signed-off-by: Eric Miao <eric.y.miao@gmail.com>
Diffstat (limited to 'arch/arm/mach-pxa')
-rw-r--r-- | arch/arm/mach-pxa/zeus.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/mach-pxa/zeus.c b/arch/arm/mach-pxa/zeus.c index 765e6189f7ba..1a73dc8f4e41 100644 --- a/arch/arm/mach-pxa/zeus.c +++ b/arch/arm/mach-pxa/zeus.c | |||
@@ -509,7 +509,9 @@ static void zeus_ohci_exit(struct device *dev) | |||
509 | 509 | ||
510 | static struct pxaohci_platform_data zeus_ohci_platform_data = { | 510 | static struct pxaohci_platform_data zeus_ohci_platform_data = { |
511 | .port_mode = PMM_NPS_MODE, | 511 | .port_mode = PMM_NPS_MODE, |
512 | .flags = ENABLE_PORT_ALL | POWER_CONTROL_LOW | POWER_SENSE_LOW, | 512 | /* Clear Power Control Polarity Low and set Power Sense |
513 | * Polarity Low. Supply power to USB ports. */ | ||
514 | .flags = ENABLE_PORT_ALL | POWER_SENSE_LOW, | ||
513 | .init = zeus_ohci_init, | 515 | .init = zeus_ohci_init, |
514 | .exit = zeus_ohci_exit, | 516 | .exit = zeus_ohci_exit, |
515 | }; | 517 | }; |