diff options
author | Mikhail Kshevetskiy <[email protected]> | 2013-03-14 10:18:29 +0100 |
---|---|---|
committer | Felipe Balbi <[email protected]> | 2013-03-14 12:44:54 +0200 |
commit | db9e51617faad3a54d10b7cb340a82688ec0232d (patch) | |
tree | 4fbe224fa45dc02cd3167e49068ddcb5e686e29b | |
parent | 66e4afc77f76653460d7eb31ec793506ada1ad33 (diff) |
usb: musb: da8xx: Fix build breakage due to typo
Commit 032ec49f5351e9cb242b1a1c367d14415043ab95 (usb: musb: drop useless
board_mode usage) introduced a typo that breaks the build.
Signed-off-by: Mikhail Kshevetskiy <[email protected]>
[ Fixed commit message ]
Cc: Mikhail Kshevetskiy <[email protected]>
Cc: Sergei Shtylyov <[email protected]>
Cc: Greg Kroah-Hartman <[email protected]>
Cc: [email protected]
Signed-off-by: Michael Riesch <[email protected]>
Signed-off-by: Felipe Balbi <[email protected]>
-rw-r--r-- | drivers/usb/musb/da8xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/musb/da8xx.c b/drivers/usb/musb/da8xx.c index 7c71769d71ff..41613a2b35e8 100644 --- a/drivers/usb/musb/da8xx.c +++ b/drivers/usb/musb/da8xx.c @@ -327,7 +327,7 @@ static irqreturn_t da8xx_musb_interrupt(int irq, void *hci) u8 devctl = musb_readb(mregs, MUSB_DEVCTL); int err; - err = musb->int_usb & USB_INTR_VBUSERROR; + err = musb->int_usb & MUSB_INTR_VBUSERROR; if (err) { /* * The Mentor core doesn't debounce VBUS as needed |