diff options
Diffstat (limited to 'arch/arm/mach-omap2/usb-musb.c')
| -rw-r--r-- | arch/arm/mach-omap2/usb-musb.c | 21 | 
1 files changed, 0 insertions, 21 deletions
diff --git a/arch/arm/mach-omap2/usb-musb.c b/arch/arm/mach-omap2/usb-musb.c index d85296dc896..739e59e8025 100644 --- a/arch/arm/mach-omap2/usb-musb.c +++ b/arch/arm/mach-omap2/usb-musb.c @@ -155,20 +155,6 @@ static struct platform_device musb_device = {  	.resource	= musb_resources,  }; -#ifdef CONFIG_NOP_USB_XCEIV -static u64 nop_xceiv_dmamask = DMA_BIT_MASK(32); - -static struct platform_device nop_xceiv_device = { -	.name		= "nop_usb_xceiv", -	.id		= -1, -	.dev = { -		.dma_mask		= &nop_xceiv_dmamask, -		.coherent_dma_mask	= DMA_BIT_MASK(32), -		.platform_data		= NULL, -	}, -}; -#endif -  void __init usb_musb_init(void)  {  	if (cpu_is_omap243x()) @@ -183,13 +169,6 @@ void __init usb_musb_init(void)  	 */  	musb_plat.clock = "ick"; -#ifdef CONFIG_NOP_USB_XCEIV -	if (platform_device_register(&nop_xceiv_device) < 0) { -		printk(KERN_ERR "Unable to register NOP-XCEIV device\n"); -		return; -	} -#endif -  	if (platform_device_register(&musb_device) < 0) {  		printk(KERN_ERR "Unable to register HS-USB (MUSB) device\n");  		return;  |