Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4d263536 authored by Wei Yongjun's avatar Wei Yongjun Committed by Matthew Garrett
Browse files

x86: smartconnect: 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 aa3b88a3
Loading
Loading
Loading
Loading
+1 −12
Original line number Diff line number Diff line
@@ -74,17 +74,6 @@ static struct acpi_driver smartconnect_driver = {
	},
};

static int smartconnect_init(void)
{
	return acpi_bus_register_driver(&smartconnect_driver);
}

static void smartconnect_exit(void)
{
	acpi_bus_unregister_driver(&smartconnect_driver);
}

module_init(smartconnect_init);
module_exit(smartconnect_exit);
module_acpi_driver(smartconnect_driver);

MODULE_DEVICE_TABLE(acpi, smartconnect_ids);