diff options
author | Peter Huewe <PeterHuewe@gmx.de> | 2015-03-16 21:46:32 +0100 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2015-03-18 22:39:17 +0100 |
commit | 99c876bec30d064679c07d53b44a4e99da10f576 (patch) | |
tree | d764f4b2a49a798ffd7b4babd1c7800c48f96ef8 | |
parent | 1551660369d00a7e8cdfa12e9af132053eb67140 (diff) | |
download | linux-99c876bec30d064679c07d53b44a4e99da10f576.tar.gz linux-99c876bec30d064679c07d53b44a4e99da10f576.tar.bz2 linux-99c876bec30d064679c07d53b44a4e99da10f576.zip |
PNP: ata/pata_isapnp: Use module_pnp_driver to register driver
Removing some boilerplate by using module_pnp_driver instead of calling
register and unregister in the otherwise empty init/exit functions
Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r-- | drivers/ata/pata_isapnp.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/ata/pata_isapnp.c b/drivers/ata/pata_isapnp.c index b33d1f99b3a4..994f168b54a8 100644 --- a/drivers/ata/pata_isapnp.c +++ b/drivers/ata/pata_isapnp.c @@ -128,20 +128,8 @@ static struct pnp_driver isapnp_driver = { .remove = isapnp_remove_one, }; -static int __init isapnp_init(void) -{ - return pnp_register_driver(&isapnp_driver); -} - -static void __exit isapnp_exit(void) -{ - pnp_unregister_driver(&isapnp_driver); -} - +module_pnp_driver(isapnp_driver); MODULE_AUTHOR("Alan Cox"); MODULE_DESCRIPTION("low-level driver for ISA PnP ATA"); MODULE_LICENSE("GPL"); MODULE_VERSION(DRV_VERSION); - -module_init(isapnp_init); -module_exit(isapnp_exit); |