usb: host: ohci: omap: fix build breakage
authorFelipe Balbi <balbi@ti.com>
Sat, 8 Nov 2014 01:43:45 +0000 (19:43 -0600)
committerFelipe Balbi <balbi@ti.com>
Mon, 10 Nov 2014 23:19:38 +0000 (17:19 -0600)
commit e47d925 (usb: move the OTG state
from the USB PHY to the OTG structure) moved
the OTG state field from struct usb_phy to
struct usb_otg but, even though I fixed many
other build breakages, I still missed one
on ohci-omap.c.

Fix the build breakage now.

drivers/usb/host/ohci-omap.c: In function ‘start_hnp’:
drivers/usb/host/ohci-omap.c:186:19: error: request for member ‘state’ in something not a structure or union
  hcd->usb_phy->otg.state = OTG_STATE_A_SUSPEND;

Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/host/ohci-omap.c

index cf89b4b17f1417c20cc7da081490d568fffa609e..3e5df5af3740d28be0d7535ba45fe5bdaea86252 100644 (file)
@@ -183,7 +183,7 @@ static void start_hnp(struct ohci_hcd *ohci)
        otg_start_hnp(hcd->usb_phy->otg);
 
        local_irq_save(flags);
-       hcd->usb_phy->otg.state = OTG_STATE_A_SUSPEND;
+       hcd->usb_phy->otg->state = OTG_STATE_A_SUSPEND;
        writel (RH_PS_PSS, &ohci->regs->roothub.portstatus [port]);
        l = omap_readl(OTG_CTRL);
        l &= ~OTG_A_BUSREQ;