%description Correct the USB host initialisation flags of Arcom/Eurotech Zeus SBC. Signed-off-by: Amit Walambe %patch Index: linux-2.6.33-rc6/arch/arm/mach-pxa/zeus.c =================================================================== --- linux-2.6.33-rc6.orig/arch/arm/mach-pxa/zeus.c 2010-02-10 11:37:47.456069467 +0530 +++ linux-2.6.33-rc6/arch/arm/mach-pxa/zeus.c 2010-02-10 20:58:38.828712034 +0530 @@ -509,7 +509,9 @@ static struct pxaohci_platform_data zeus_ohci_platform_data = { .port_mode = PMM_NPS_MODE, - .flags = ENABLE_PORT_ALL | POWER_CONTROL_LOW | POWER_SENSE_LOW, + /* Clear Power Control Polarity Low and set Power Sense + * Polarity Low. Supply power to USB ports. */ + .flags = ENABLE_PORT_ALL | POWER_SENSE_LOW, .init = zeus_ohci_init, .exit = zeus_ohci_exit, };