forked from Minki/linux
net/ethernet/atheros/atl1e/atl1e_main: Use module_pci_driver to register driver
Removing some boilerplate by using module_pci_driver instead of calling register and unregister in the otherwise empty init/exit functions. Signed-off-by: Peter Huewe <peterhuewe@gmx.de> Acked-by: Hannes Frederic Sowa <hannes@stressinduktion.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2c21d6c988
commit
687df5d489
@ -2489,27 +2489,4 @@ static struct pci_driver atl1e_driver = {
|
||||
.err_handler = &atl1e_err_handler
|
||||
};
|
||||
|
||||
/**
|
||||
* atl1e_init_module - Driver Registration Routine
|
||||
*
|
||||
* atl1e_init_module is the first routine called when the driver is
|
||||
* loaded. All it does is register with the PCI subsystem.
|
||||
*/
|
||||
static int __init atl1e_init_module(void)
|
||||
{
|
||||
return pci_register_driver(&atl1e_driver);
|
||||
}
|
||||
|
||||
/**
|
||||
* atl1e_exit_module - Driver Exit Cleanup Routine
|
||||
*
|
||||
* atl1e_exit_module is called just before the driver is removed
|
||||
* from memory.
|
||||
*/
|
||||
static void __exit atl1e_exit_module(void)
|
||||
{
|
||||
pci_unregister_driver(&atl1e_driver);
|
||||
}
|
||||
|
||||
module_init(atl1e_init_module);
|
||||
module_exit(atl1e_exit_module);
|
||||
module_pci_driver(atl1e_driver);
|
||||
|
Loading…
Reference in New Issue
Block a user