aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/musb/blackfin.c
diff options
context:
space:
mode:
authorAnatolij Gustschin <agust@denx.de>2011-05-05 06:11:21 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2011-05-06 21:16:39 -0400
commit3df004532582d0cc721da0df28311bcedd639724 (patch)
treed9ee3de5a34e5a1dcfc4a67043336ddd7cbe1664 /drivers/usb/musb/blackfin.c
parent9be0392989306361d4a63a06a8ee281efbead548 (diff)
usb: fix building musb drivers
Commit 3dacdf11 "usb: factor out state_string() on otg drivers" broke building musb drivers since there is already another otg_state_string() function in musb drivers, but with different prototype. Fix musb drivers to use common otg_state_string(), too. Also provide a nop for otg_state_string() if CONFIG_USB_OTG_UTILS is not defined. Signed-off-by: Anatolij Gustschin <agust@denx.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/musb/blackfin.c')
-rw-r--r--drivers/usb/musb/blackfin.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/usb/musb/blackfin.c b/drivers/usb/musb/blackfin.c
index 8e2a1ff8a35a..e141d89656e1 100644
--- a/drivers/usb/musb/blackfin.c
+++ b/drivers/usb/musb/blackfin.c
@@ -279,12 +279,13 @@ static void musb_conn_timer_handler(unsigned long _musb)
279 } 279 }
280 break; 280 break;
281 default: 281 default:
282 DBG(1, "%s state not handled\n", otg_state_string(musb)); 282 DBG(1, "%s state not handled\n",
283 otg_state_string(musb->xceiv->state));
283 break; 284 break;
284 } 285 }
285 spin_unlock_irqrestore(&musb->lock, flags); 286 spin_unlock_irqrestore(&musb->lock, flags);
286 287
287 DBG(4, "state is %s\n", otg_state_string(musb)); 288 DBG(4, "state is %s\n", otg_state_string(musb->xceiv->state));
288} 289}
289 290
290static void bfin_musb_enable(struct musb *musb) 291static void bfin_musb_enable(struct musb *musb)
@@ -308,7 +309,7 @@ static void bfin_musb_set_vbus(struct musb *musb, int is_on)
308 309
309 DBG(1, "VBUS %s, devctl %02x " 310 DBG(1, "VBUS %s, devctl %02x "
310 /* otg %3x conf %08x prcm %08x */ "\n", 311 /* otg %3x conf %08x prcm %08x */ "\n",
311 otg_state_string(musb), 312 otg_state_string(musb->xceiv->state),
312 musb_readb(musb->mregs, MUSB_DEVCTL)); 313 musb_readb(musb->mregs, MUSB_DEVCTL));
313} 314}
314 315