mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-19 02:36:25 +07:00
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>
This commit is contained in:
parent
67c0fe420e
commit
37becf6e60
@ -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>");
|
||||
|
Loading…
Reference in New Issue
Block a user