diff options
| -rw-r--r-- | drivers/usb/host/ohci-pci.c | 5 | ||||
| -rw-r--r-- | drivers/usb/phy/phy-fsl-usb.h | 2 | ||||
| -rw-r--r-- | drivers/usb/phy/phy-fsm-usb.c | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/drivers/usb/host/ohci-pci.c b/drivers/usb/host/ohci-pci.c index 08613e241894..0f1d193fef02 100644 --- a/drivers/usb/host/ohci-pci.c +++ b/drivers/usb/host/ohci-pci.c | |||
| @@ -304,6 +304,11 @@ static int __init ohci_pci_init(void) | |||
| 304 | pr_info("%s: " DRIVER_DESC "\n", hcd_name); | 304 | pr_info("%s: " DRIVER_DESC "\n", hcd_name); |
| 305 | 305 | ||
| 306 | ohci_init_driver(&ohci_pci_hc_driver, &pci_overrides); | 306 | ohci_init_driver(&ohci_pci_hc_driver, &pci_overrides); |
| 307 | |||
| 308 | /* Entries for the PCI suspend/resume callbacks are special */ | ||
| 309 | ohci_pci_hc_driver.pci_suspend = ohci_suspend; | ||
| 310 | ohci_pci_hc_driver.pci_resume = ohci_resume; | ||
| 311 | |||
| 307 | return pci_register_driver(&ohci_pci_driver); | 312 | return pci_register_driver(&ohci_pci_driver); |
| 308 | } | 313 | } |
| 309 | module_init(ohci_pci_init); | 314 | module_init(ohci_pci_init); |
diff --git a/drivers/usb/phy/phy-fsl-usb.h b/drivers/usb/phy/phy-fsl-usb.h index ca266280895d..e1859b8ef567 100644 --- a/drivers/usb/phy/phy-fsl-usb.h +++ b/drivers/usb/phy/phy-fsl-usb.h | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | * 675 Mass Ave, Cambridge, MA 02139, USA. | 15 | * 675 Mass Ave, Cambridge, MA 02139, USA. |
| 16 | */ | 16 | */ |
| 17 | 17 | ||
| 18 | #include "otg_fsm.h" | 18 | #include "phy-fsm-usb.h" |
| 19 | #include <linux/usb/otg.h> | 19 | #include <linux/usb/otg.h> |
| 20 | #include <linux/ioctl.h> | 20 | #include <linux/ioctl.h> |
| 21 | 21 | ||
diff --git a/drivers/usb/phy/phy-fsm-usb.c b/drivers/usb/phy/phy-fsm-usb.c index c520b3548e7c..7f4596606e18 100644 --- a/drivers/usb/phy/phy-fsm-usb.c +++ b/drivers/usb/phy/phy-fsm-usb.c | |||
| @@ -29,7 +29,7 @@ | |||
| 29 | #include <linux/usb/gadget.h> | 29 | #include <linux/usb/gadget.h> |
| 30 | #include <linux/usb/otg.h> | 30 | #include <linux/usb/otg.h> |
| 31 | 31 | ||
| 32 | #include "phy-otg-fsm.h" | 32 | #include "phy-fsm-usb.h" |
| 33 | 33 | ||
| 34 | /* Change USB protocol when there is a protocol change */ | 34 | /* Change USB protocol when there is a protocol change */ |
| 35 | static int otg_set_protocol(struct otg_fsm *fsm, int protocol) | 35 | static int otg_set_protocol(struct otg_fsm *fsm, int protocol) |
