Commit 2ff1af70 authored by Wei Yongjun's avatar Wei Yongjun Committed by Matthew Garrett

x86: irst: use module_acpi_driver to simplify the code

module_acpi_driver() makes the code simpler by eliminating
boilerplate code.
Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: default avatarMatthew Garrett <matthew.garrett@nebula.com>
parent 4d263536
......@@ -193,17 +193,6 @@ static struct acpi_driver irst_driver = {
},
};
static int irst_init(void)
{
return acpi_bus_register_driver(&irst_driver);
}
static void irst_exit(void)
{
acpi_bus_unregister_driver(&irst_driver);
}
module_init(irst_init);
module_exit(irst_exit);
module_acpi_driver(irst_driver);
MODULE_DEVICE_TABLE(acpi, irst_ids);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment