Skip to content

Commit

Permalink
Input: atlas_btns - convert to module_acpi_driver()
Browse files Browse the repository at this point in the history
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Acked-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Len Brown <len.brown@intel.com>
  • Loading branch information
Mika Westerberg authored and Len Brown committed Sep 21, 2012
1 parent 2042050 commit f06efcc
Showing 1 changed file with 1 addition and 16 deletions.
17 changes: 1 addition & 16 deletions drivers/input/misc/atlas_btns.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,22 +151,7 @@ static struct acpi_driver atlas_acpi_driver = {
.remove = atlas_acpi_button_remove,
},
};

static int __init atlas_acpi_init(void)
{
if (acpi_disabled)
return -ENODEV;

return acpi_bus_register_driver(&atlas_acpi_driver);
}

static void __exit atlas_acpi_exit(void)
{
acpi_bus_unregister_driver(&atlas_acpi_driver);
}

module_init(atlas_acpi_init);
module_exit(atlas_acpi_exit);
module_acpi_driver(atlas_acpi_driver);

MODULE_AUTHOR("Jaya Kumar");
MODULE_LICENSE("GPL");
Expand Down

0 comments on commit f06efcc

Please sign in to comment.