uio/uio_aec: 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> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Родитель
9db5c9088f
Коммит
aa8c06f7c9
|
@ -160,17 +160,5 @@ static struct pci_driver pci_driver = {
|
|||
.remove = remove,
|
||||
};
|
||||
|
||||
static int __init aectc_init(void)
|
||||
{
|
||||
return pci_register_driver(&pci_driver);
|
||||
}
|
||||
|
||||
static void __exit aectc_exit(void)
|
||||
{
|
||||
pci_unregister_driver(&pci_driver);
|
||||
}
|
||||
|
||||
module_pci_driver(pci_driver);
|
||||
MODULE_LICENSE("GPL");
|
||||
|
||||
module_init(aectc_init);
|
||||
module_exit(aectc_exit);
|
||||
|
|
Загрузка…
Ссылка в новой задаче