Commit c5144241 authored by Wei Yongjun's avatar Wei Yongjun Committed by Greg Kroah-Hartman

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: 7d3e4d80 ("misc: microchip: pci1xxxx: load gpio driver for the gpio controller auxiliary device enumerated by the auxiliary bus driver.")
Reviewed-by: default avatarKumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Link: https://lore.kernel.org/r/20220907145808.1789249-5-weiyongjun@huaweicloud.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e102ef81
......@@ -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>");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment