mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
parport: Switch to use module_pci_driver() macro
Eliminate some boilerplate code by using module_pci_driver() instead of init/exit, moving the salient bits from init into probe. Tested-by: Nikola Ciprich <nikola.ciprich@linuxbox.cz> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Sudip Mukherjee <sudipm.mukherjee@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
82dfabf1c4
commit
b0b0a6438e
@ -694,22 +694,8 @@ static struct pci_driver parport_serial_pci_driver = {
|
||||
.pm = &parport_serial_pm_ops,
|
||||
},
|
||||
};
|
||||
|
||||
|
||||
static int __init parport_serial_init (void)
|
||||
{
|
||||
return pci_register_driver (&parport_serial_pci_driver);
|
||||
}
|
||||
|
||||
static void __exit parport_serial_exit (void)
|
||||
{
|
||||
pci_unregister_driver (&parport_serial_pci_driver);
|
||||
return;
|
||||
}
|
||||
module_pci_driver(parport_serial_pci_driver);
|
||||
|
||||
MODULE_AUTHOR("Tim Waugh <twaugh@redhat.com>");
|
||||
MODULE_DESCRIPTION("Driver for common parallel+serial multi-I/O PCI cards");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
||||
module_init(parport_serial_init);
|
||||
module_exit(parport_serial_exit);
|
||||
|
Loading…
Reference in New Issue
Block a user