Skip to content

Commit

Permalink
toshiba_bluetooth: 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>
Signed-off-by: Len Brown <len.brown@intel.com>
  • Loading branch information
Mika Westerberg authored and Len Brown committed Sep 21, 2012
1 parent 1516559 commit 01d1775
Showing 1 changed file with 1 addition and 21 deletions.
22 changes: 1 addition & 21 deletions drivers/platform/x86/toshiba_bluetooth.c
Original file line number Diff line number Diff line change
Expand Up @@ -122,30 +122,10 @@ static int toshiba_bt_rfkill_add(struct acpi_device *device)
return result;
}

static int __init toshiba_bt_rfkill_init(void)
{
int result;

result = acpi_bus_register_driver(&toshiba_bt_rfkill_driver);
if (result < 0) {
ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
"Error registering driver\n"));
return result;
}

return 0;
}

static int toshiba_bt_rfkill_remove(struct acpi_device *device, int type)
{
/* clean up */
return 0;
}

static void __exit toshiba_bt_rfkill_exit(void)
{
acpi_bus_unregister_driver(&toshiba_bt_rfkill_driver);
}

module_init(toshiba_bt_rfkill_init);
module_exit(toshiba_bt_rfkill_exit);
module_acpi_driver(toshiba_bt_rfkill_driver);

0 comments on commit 01d1775

Please sign in to comment.