diff options
author | Stephan Gatzka <stephan.gatzka@gmail.com> | 2013-08-26 14:50:04 -0400 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2013-08-29 16:30:54 -0400 |
commit | 7a723c6ed9e92bf91db5c65542c78106030afdbe (patch) | |
tree | a9901f45a18ca6fad3c1c3592388115e36c54aeb /drivers/firewire | |
parent | 0dbe15f88be5b2cdf4ca4145797861dfb0d583a5 (diff) |
firewire: ohci: Change module_pci_driver to module_init/module_exit
This is a prerequisite to allocate a per driver self_id workqueue.
This reverts the ohci.c part of patch
fe2af11c220c7bb3a67f7aec0594811e5c59e019.
Signed-off-by: Stephan Gatzka <stephan.gatzka@gmail.com>
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/firewire')
-rw-r--r-- | drivers/firewire/ohci.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/drivers/firewire/ohci.c b/drivers/firewire/ohci.c index 04e6eb127b73..80830d6fe46b 100644 --- a/drivers/firewire/ohci.c +++ b/drivers/firewire/ohci.c | |||
@@ -3870,7 +3870,18 @@ static struct pci_driver fw_ohci_pci_driver = { | |||
3870 | #endif | 3870 | #endif |
3871 | }; | 3871 | }; |
3872 | 3872 | ||
3873 | module_pci_driver(fw_ohci_pci_driver); | 3873 | static int __init fw_ohci_init(void) |
3874 | { | ||
3875 | return pci_register_driver(&fw_ohci_pci_driver); | ||
3876 | } | ||
3877 | |||
3878 | static void __exit fw_ohci_cleanup(void) | ||
3879 | { | ||
3880 | pci_unregister_driver(&fw_ohci_pci_driver); | ||
3881 | } | ||
3882 | |||
3883 | module_init(fw_ohci_init); | ||
3884 | module_exit(fw_ohci_cleanup); | ||
3874 | 3885 | ||
3875 | MODULE_AUTHOR("Kristian Hoegsberg <krh@bitplanet.net>"); | 3886 | MODULE_AUTHOR("Kristian Hoegsberg <krh@bitplanet.net>"); |
3876 | MODULE_DESCRIPTION("Driver for PCI OHCI IEEE1394 controllers"); | 3887 | MODULE_DESCRIPTION("Driver for PCI OHCI IEEE1394 controllers"); |