diff options
Diffstat (limited to 'drivers/usb/host/ohci-omap.c')
| -rw-r--r-- | drivers/usb/host/ohci-omap.c | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/usb/host/ohci-omap.c b/drivers/usb/host/ohci-omap.c index 4531d03503c..439e6e4f2d6 100644 --- a/drivers/usb/host/ohci-omap.c +++ b/drivers/usb/host/ohci-omap.c @@ -25,7 +25,6 @@  #include <asm/mach-types.h>  #include <mach/mux.h> -#include <plat/fpga.h>  #include <mach/hardware.h>  #include <mach/irqs.h> @@ -93,14 +92,14 @@ static int omap_ohci_transceiver_power(int on)  {  	if (on) {  		if (machine_is_omap_innovator() && cpu_is_omap1510()) -			fpga_write(fpga_read(INNOVATOR_FPGA_CAM_USB_CONTROL) +			__raw_writeb(__raw_readb(INNOVATOR_FPGA_CAM_USB_CONTROL)  				| ((1 << 5/*usb1*/) | (1 << 3/*usb2*/)),  			       INNOVATOR_FPGA_CAM_USB_CONTROL);  		else if (machine_is_omap_osk())  			tps65010_set_gpio_out_value(GPIO1, LOW);  	} else {  		if (machine_is_omap_innovator() && cpu_is_omap1510()) -			fpga_write(fpga_read(INNOVATOR_FPGA_CAM_USB_CONTROL) +			__raw_writeb(__raw_readb(INNOVATOR_FPGA_CAM_USB_CONTROL)  				& ~((1 << 5/*usb1*/) | (1 << 3/*usb2*/)),  			       INNOVATOR_FPGA_CAM_USB_CONTROL);  		else if (machine_is_omap_osk())  |