diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2016-08-21 15:28:36 (GMT) |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2016-08-29 07:36:19 (GMT) |
commit | 37becf6e603236a19660e76a3b82f9cc25972e2d (patch) | |
tree | 4d7d6b9108a7ad982badb0a50eb373aabdcecb7e | |
parent | 67c0fe420ea716268b761de72ef0420b7b02bc96 (diff) | |
download | linux-37becf6e603236a19660e76a3b82f9cc25972e2d.tar.xz |
HID: intel-ish-hid: use module_pci_driver to simplify the code
Use the module_pci_driver() macro to make the code simpler
by eliminating module_init and module_exit calls.
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Acked-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r-- | drivers/hid/intel-ish-hid/ipc/pci-ish.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/hid/intel-ish-hid/ipc/pci-ish.c b/drivers/hid/intel-ish-hid/ipc/pci-ish.c index b14d6f4..42f0bee 100644 --- a/drivers/hid/intel-ish-hid/ipc/pci-ish.c +++ b/drivers/hid/intel-ish-hid/ipc/pci-ish.c @@ -311,18 +311,7 @@ static struct pci_driver ish_driver = { .driver.pm = ISHTP_ISH_PM_OPS, }; -static int __init ish_driver_init(void) -{ - return pci_register_driver(&ish_driver); -} - -static void __exit ish_driver_exit(void) -{ - pci_unregister_driver(&ish_driver); -} - -module_init(ish_driver_init); -module_exit(ish_driver_exit); +module_pci_driver(ish_driver); /* Original author */ MODULE_AUTHOR("Daniel Drubin <daniel.drubin@intel.com>"); |