Skip to content

Commit

Permalink
ACPI/fan: convert to module_acpi_driver()
Browse files Browse the repository at this point in the history
Signed-off-by: Mika Westerberg <[email protected]>
Signed-off-by: Len Brown <[email protected]>
  • Loading branch information
westeri authored and lenb committed Sep 21, 2012
1 parent 466e78f commit d8014c4
Showing 1 changed file with 1 addition and 21 deletions.
22 changes: 1 addition & 21 deletions drivers/acpi/fan.c
Original file line number Diff line number Diff line change
Expand Up @@ -212,24 +212,4 @@ static int acpi_fan_resume(struct device *dev)
}
#endif

static int __init acpi_fan_init(void)
{
int result = 0;

result = acpi_bus_register_driver(&acpi_fan_driver);
if (result < 0)
return -ENODEV;

return 0;
}

static void __exit acpi_fan_exit(void)
{

acpi_bus_unregister_driver(&acpi_fan_driver);

return;
}

module_init(acpi_fan_init);
module_exit(acpi_fan_exit);
module_acpi_driver(acpi_fan_driver);

0 comments on commit d8014c4

Please sign in to comment.