Skip to content

Commit

Permalink
can: tscan1: Utilize the module_isa_driver macro
Browse files Browse the repository at this point in the history
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.

Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
  • Loading branch information
William Breathitt Gray authored and Marc Kleine-Budde committed Jun 17, 2016
1 parent 21aedfd commit ae5ac9b
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions drivers/net/can/sja1000/tscan1.c
Original file line number Diff line number Diff line change
Expand Up @@ -203,14 +203,4 @@ static struct isa_driver tscan1_isa_driver = {
},
};

static int __init tscan1_init(void)
{
return isa_register_driver(&tscan1_isa_driver, TSCAN1_MAXDEV);
}
module_init(tscan1_init);

static void __exit tscan1_exit(void)
{
isa_unregister_driver(&tscan1_isa_driver);
}
module_exit(tscan1_exit);
module_isa_driver(tscan1_isa_driver, TSCAN1_MAXDEV);

0 comments on commit ae5ac9b

Please sign in to comment.