This driver does not do anything special in module init/exit. This patch eliminates the module init/exit boilerplate code by utilizing the module_isa_driver macro.
Cc: Hans Verkuil <hverk...@xs4all.nl> Signed-off-by: William Breathitt Gray <vilhelm.g...@gmail.com> --- drivers/media/radio/radio-aztech.c | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/drivers/media/radio/radio-aztech.c b/drivers/media/radio/radio-aztech.c index 705dd6f..7b39655 100644 --- a/drivers/media/radio/radio-aztech.c +++ b/drivers/media/radio/radio-aztech.c @@ -147,15 +147,4 @@ static struct radio_isa_driver aztech_driver = { .max_volume = 3, }; -static int __init aztech_init(void) -{ - return isa_register_driver(&aztech_driver.driver, AZTECH_MAX); -} - -static void __exit aztech_exit(void) -{ - isa_unregister_driver(&aztech_driver.driver); -} - -module_init(aztech_init); -module_exit(aztech_exit); +module_isa_driver(aztech_driver.driver, AZTECH_MAX); -- 2.7.3