projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b59f9a0
)
uio/uio_cif: Use module_pci_driver to register driver
author
Peter Huewe
<peterhuewe@gmx.de>
Mon, 20 May 2013 20:47:42 +0000
(22:47 +0200)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Tue, 21 May 2013 17:10:41 +0000
(10:10 -0700)
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>
drivers/uio/uio_cif.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/uio/uio_cif.c
b/drivers/uio/uio_cif.c
index 7dd6fc60539de51a4165a7e35153a87212d56b8d..22cdf385ab33159cc99c37fd10946f96bbefdf85 100644
(file)
--- a/
drivers/uio/uio_cif.c
+++ b/
drivers/uio/uio_cif.c
@@
-135,19
+135,7
@@
static struct pci_driver hilscher_pci_driver = {
.remove = hilscher_pci_remove,
};
-static int __init hilscher_init_module(void)
-{
- return pci_register_driver(&hilscher_pci_driver);
-}
-
-static void __exit hilscher_exit_module(void)
-{
- pci_unregister_driver(&hilscher_pci_driver);
-}
-
-module_init(hilscher_init_module);
-module_exit(hilscher_exit_module);
-
+module_pci_driver(hilscher_pci_driver);
MODULE_DEVICE_TABLE(pci, hilscher_pci_ids);
MODULE_LICENSE("GPL v2");
MODULE_AUTHOR("Hans J. Koch, Benedikt Spranger");