diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2022-09-07 17:58:08 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-09-09 11:03:13 +0300 |
commit | c5144241d28cfbca11d75ad334bbacabad0becaf (patch) | |
tree | 571295dcd7ffd2d8c90af4eaa3a70aa0aaf8e334 | |
parent | e102ef816f08f4745c4d68ec0560bdd072a568d4 (diff) | |
download | linux-c5144241d28cfbca11d75ad334bbacabad0becaf.tar.xz |
misc: microchip: pci1xxxx: use module_auxiliary_driver
Use the module_auxiliary_driver() macro to make the code simpler
by eliminating module_init and module_exit calls.
Fixes: 7d3e4d807df2 ("misc: microchip: pci1xxxx: load gpio driver for the gpio controller auxiliary device enumerated by the auxiliary bus driver.")
Reviewed-by: Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Link: https://lore.kernel.org/r/20220907145808.1789249-5-weiyongjun@huaweicloud.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c b/drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c index fa80a7788596..9cc771c604ed 100644 --- a/drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c +++ b/drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c @@ -421,19 +421,7 @@ static struct auxiliary_driver pci1xxxx_gpio_driver = { .probe = pci1xxxx_gpio_probe, .id_table = pci1xxxx_gpio_auxiliary_id_table }; - -static int __init pci1xxxx_gpio_driver_init(void) -{ - return auxiliary_driver_register(&pci1xxxx_gpio_driver); -} - -static void __exit pci1xxxx_gpio_driver_exit(void) -{ - auxiliary_driver_unregister(&pci1xxxx_gpio_driver); -} - -module_init(pci1xxxx_gpio_driver_init); -module_exit(pci1xxxx_gpio_driver_exit); +module_auxiliary_driver(pci1xxxx_gpio_driver); MODULE_DESCRIPTION("Microchip Technology Inc. PCI1xxxx GPIO controller"); MODULE_AUTHOR("Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>"); |