diff options
author | Gerard Snitselaar <dev@snitselaar.org> | 2012-03-16 14:34:11 -0400 |
---|---|---|
committer | Sarah Sharp <sarah.a.sharp@linux.intel.com> | 2012-04-10 18:21:53 -0400 |
commit | a46c46a1d752756ba159dd454b746a3fb735c4f5 (patch) | |
tree | ed41478336b9423810ba0574f5185ef35e71366e /drivers/usb/host/xhci-pci.c | |
parent | bb334e90cc3a2913906665ea966abd7f462b67c2 (diff) |
usb: xhci: fix section mismatch in linux-next
xhci_unregister_pci() is called in xhci_hcd_init().
Signed-off-by: Gerard Snitselaar <dev@snitselaar.org>
Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Diffstat (limited to 'drivers/usb/host/xhci-pci.c')
-rw-r--r-- | drivers/usb/host/xhci-pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/xhci-pci.c b/drivers/usb/host/xhci-pci.c index ef98b38626fb..0d7b85135965 100644 --- a/drivers/usb/host/xhci-pci.c +++ b/drivers/usb/host/xhci-pci.c | |||
@@ -326,7 +326,7 @@ int __init xhci_register_pci(void) | |||
326 | return pci_register_driver(&xhci_pci_driver); | 326 | return pci_register_driver(&xhci_pci_driver); |
327 | } | 327 | } |
328 | 328 | ||
329 | void __exit xhci_unregister_pci(void) | 329 | void xhci_unregister_pci(void) |
330 | { | 330 | { |
331 | pci_unregister_driver(&xhci_pci_driver); | 331 | pci_unregister_driver(&xhci_pci_driver); |
332 | } | 332 | } |