diff options
| author | William Breathitt Gray <vilhelm.gray@gmail.com> | 2016-06-01 08:59:51 -0400 |
|---|---|---|
| committer | Marc Kleine-Budde <mkl@pengutronix.de> | 2016-06-17 09:39:43 -0400 |
| commit | ae5ac9b3b8a942724da578dd5a4112b6d2f7d1bb (patch) | |
| tree | c97d87fbd78aaf2f178d8eaa07a02502fabf3a39 | |
| parent | 21aedfdf092b0ceaf717e89495505052f8346362 (diff) | |
can: tscan1: Utilize the module_isa_driver macro
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>
| -rw-r--r-- | drivers/net/can/sja1000/tscan1.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/drivers/net/can/sja1000/tscan1.c b/drivers/net/can/sja1000/tscan1.c index 76513dd780c7..79572457a2d6 100644 --- a/drivers/net/can/sja1000/tscan1.c +++ b/drivers/net/can/sja1000/tscan1.c | |||
| @@ -203,14 +203,4 @@ static struct isa_driver tscan1_isa_driver = { | |||
| 203 | }, | 203 | }, |
| 204 | }; | 204 | }; |
| 205 | 205 | ||
| 206 | static int __init tscan1_init(void) | 206 | module_isa_driver(tscan1_isa_driver, TSCAN1_MAXDEV); |
| 207 | { | ||
| 208 | return isa_register_driver(&tscan1_isa_driver, TSCAN1_MAXDEV); | ||
| 209 | } | ||
| 210 | module_init(tscan1_init); | ||
| 211 | |||
| 212 | static void __exit tscan1_exit(void) | ||
| 213 | { | ||
| 214 | isa_unregister_driver(&tscan1_isa_driver); | ||
| 215 | } | ||
| 216 | module_exit(tscan1_exit); | ||
