Commit dff71408 authored by Hanjun Guo's avatar Hanjun Guo Committed by Rafael J. Wysocki
Browse files

ACPI: SBS: Simplify the driver init code



acpi_bus_register_driver() will check acpi_disable and return
-ENODEV, so the acpi_disable check outside the
acpi_bus_register_driver() is duplicated, can be removed.

Also we can just return from acpi_bus_register_driver() then
we can simplify the code further.

Signed-off-by: default avatarHanjun Guo <guohanjun@huawei.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent ab5369bb
Loading
Loading
Loading
Loading
+1 −10
Original line number Diff line number Diff line
@@ -714,16 +714,7 @@ static struct acpi_driver acpi_sbs_driver = {

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

	if (acpi_disabled)
		return -ENODEV;

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

	return 0;
	return acpi_bus_register_driver(&acpi_sbs_driver);
}

static void __exit acpi_sbs_exit(void)