diff options
author | Dmitry Baryshkov <dbaryshkov@gmail.com> | 2008-07-06 06:26:30 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-08-13 20:32:52 -0400 |
commit | e8b24450a635bbbd3a2b4c2649eef060c742ebc0 (patch) | |
tree | 7117fc61fb291011cc4b8978c93ffd96e461e89d /drivers/usb/host/ohci-hub.c | |
parent | 1133cd8adf34709e1857d1491e9fae5597b51ad5 (diff) |
USB: Hook start_hnp into ohci struct
Signed-off-by: Dmitry Baryshkov <dbaryshkov@gmail.com>
Acked-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/host/ohci-hub.c')
-rw-r--r-- | drivers/usb/host/ohci-hub.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/usb/host/ohci-hub.c b/drivers/usb/host/ohci-hub.c index d54183f1d701..439beb784f3e 100644 --- a/drivers/usb/host/ohci-hub.c +++ b/drivers/usb/host/ohci-hub.c | |||
@@ -579,8 +579,6 @@ static int ohci_start_port_reset (struct usb_hcd *hcd, unsigned port) | |||
579 | return 0; | 579 | return 0; |
580 | } | 580 | } |
581 | 581 | ||
582 | static void start_hnp(struct ohci_hcd *ohci); | ||
583 | |||
584 | #else | 582 | #else |
585 | 583 | ||
586 | #define ohci_start_port_reset NULL | 584 | #define ohci_start_port_reset NULL |
@@ -767,7 +765,7 @@ static int ohci_hub_control ( | |||
767 | #ifdef CONFIG_USB_OTG | 765 | #ifdef CONFIG_USB_OTG |
768 | if (hcd->self.otg_port == (wIndex + 1) | 766 | if (hcd->self.otg_port == (wIndex + 1) |
769 | && hcd->self.b_hnp_enable) | 767 | && hcd->self.b_hnp_enable) |
770 | start_hnp(ohci); | 768 | ohci->start_hnp(ohci); |
771 | else | 769 | else |
772 | #endif | 770 | #endif |
773 | ohci_writel (ohci, RH_PS_PSS, | 771 | ohci_writel (ohci, RH_PS_PSS, |