diff options
Diffstat (limited to 'drivers/usb/host/xhci-pci.c')
-rw-r--r-- | drivers/usb/host/xhci-pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/host/xhci-pci.c b/drivers/usb/host/xhci-pci.c index e2c82d1249c2..9f51f88cc0f5 100644 --- a/drivers/usb/host/xhci-pci.c +++ b/drivers/usb/host/xhci-pci.c | |||
@@ -320,12 +320,12 @@ static struct pci_driver xhci_pci_driver = { | |||
320 | #endif | 320 | #endif |
321 | }; | 321 | }; |
322 | 322 | ||
323 | int xhci_register_pci(void) | 323 | int __init xhci_register_pci(void) |
324 | { | 324 | { |
325 | return pci_register_driver(&xhci_pci_driver); | 325 | return pci_register_driver(&xhci_pci_driver); |
326 | } | 326 | } |
327 | 327 | ||
328 | void xhci_unregister_pci(void) | 328 | void __exit xhci_unregister_pci(void) |
329 | { | 329 | { |
330 | pci_unregister_driver(&xhci_pci_driver); | 330 | pci_unregister_driver(&xhci_pci_driver); |
331 | } | 331 | } |