ARM: OMAP2+: Remove legacy muxing for usb-tusb6010.c
authorTony Lindgren <tony@atomide.com>
Mon, 17 Oct 2016 07:47:34 +0000 (00:47 -0700)
committerTony Lindgren <tony@atomide.com>
Thu, 10 Nov 2016 19:42:15 +0000 (12:42 -0700)
We are moving to device tree based booting, and this should be
done using pinctrl-single instead.

Signed-off-by: Tony Lindgren <tony@atomide.com>
arch/arm/mach-omap2/usb-tusb6010.c

index e554d9e66a1ce35af7e4db9567fb9b398a451e0f..c2a6fbd7f8a96f372751aab9e781d48cebf6198f 100644 (file)
@@ -22,8 +22,6 @@
 
 #include "gpmc.h"
 
-#include "mux.h"
-
 static u8              async_cs, sync_cs;
 static unsigned                refclk_psec;
 
@@ -226,25 +224,6 @@ tusb6010_setup_interface(struct musb_hdrc_platform_data *data,
        }
        tusb_device.dev.platform_data = data;
 
-       /* REVISIT let the driver know what DMA channels work */
-       if (!dmachan)
-               tusb_device.dev.dma_mask = NULL;
-       else {
-               /* assume OMAP 2420 ES2.0 and later */
-               if (dmachan & (1 << 0))
-                       omap_mux_init_signal("sys_ndmareq0", 0);
-               if (dmachan & (1 << 1))
-                       omap_mux_init_signal("sys_ndmareq1", 0);
-               if (dmachan & (1 << 2))
-                       omap_mux_init_signal("sys_ndmareq2", 0);
-               if (dmachan & (1 << 3))
-                       omap_mux_init_signal("sys_ndmareq3", 0);
-               if (dmachan & (1 << 4))
-                       omap_mux_init_signal("sys_ndmareq4", 0);
-               if (dmachan & (1 << 5))
-                       omap_mux_init_signal("sys_ndmareq5", 0);
-       }
-
        /* so far so good ... register the device */
        status = platform_device_register(&tusb_device);
        if (status < 0) {