[POWERPC] Fix mpc834x USB-MPH configuration.

mpc834x USB-MPH configuration got broken by commit
6f442560021aecf08658e26ed9a37e6928ef0fa1. The selection bits in SICRL
should be cleared rather than set to configure the USB MUXes for the MPH.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>

authored by jacmet@sunsite.dk and committed by Kumar Gala 39db0fd9 d2146028

+2 -2
+2 -2
arch/powerpc/platforms/83xx/usb.c
··· 76 76 if (port0_is_dr) 77 77 printk(KERN_WARNING 78 78 "834x USB port0 can't be used by both DR and MPH!\n"); 79 - sicrl |= MPC834X_SICRL_USB0; 79 + sicrl &= ~MPC834X_SICRL_USB0; 80 80 } 81 81 prop = of_get_property(np, "port1", NULL); 82 82 if (prop) { 83 83 if (port1_is_dr) 84 84 printk(KERN_WARNING 85 85 "834x USB port1 can't be used by both DR and MPH!\n"); 86 - sicrl |= MPC834X_SICRL_USB1; 86 + sicrl &= ~MPC834X_SICRL_USB1; 87 87 } 88 88 of_node_put(np); 89 89 }