summaryrefslogtreecommitdiff
path: root/drivers/usb/musb/omap2430.c
diff options
context:
space:
mode:
authorFelipe Balbi <balbi@ti.com>2010-12-02 10:35:59 (GMT)
committerFelipe Balbi <balbi@ti.com>2010-12-10 08:21:28 (GMT)
commite6326358a43a9ac23f6df69ed1f4707c0d1ac473 (patch)
treeba21e51562418527bb668e6bb2830befb2b0edd5 /drivers/usb/musb/omap2430.c
parent3c8a5fcc051c05cfdd8e3f0d37ba3c183d509cb9 (diff)
downloadlinux-fsl-qoriq-e6326358a43a9ac23f6df69ed1f4707c0d1ac473.tar.xz
usb: musb: omap2430: drop the nops
we don't need those nops, so drop them. Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/musb/omap2430.c')
-rw-r--r--drivers/usb/musb/omap2430.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/drivers/usb/musb/omap2430.c b/drivers/usb/musb/omap2430.c
index 2659667..ef0f7fe 100644
--- a/drivers/usb/musb/omap2430.c
+++ b/drivers/usb/musb/omap2430.c
@@ -138,14 +138,6 @@ static void omap2430_musb_try_idle(struct musb *musb, unsigned long timeout)
mod_timer(&musb_idle_timer, timeout);
}
-static void omap2430_musb_enable(struct musb *musb)
-{
-}
-
-static void omap2430_musb_disable(struct musb *musb)
-{
-}
-
static void omap2430_musb_set_vbus(struct musb *musb, int is_on)
{
u8 devctl;
@@ -325,9 +317,6 @@ static const struct musb_platform_ops omap2430_ops = {
.suspend = omap2430_musb_suspend,
.resume = omap2430_musb_resume,
- .enable = omap2430_musb_enable,
- .disable = omap2430_musb_disable,
-
.set_mode = omap2430_musb_set_mode,
.try_idle = omap2430_musb_try_idle,