ACPI: EC: Make acpi_ec_dsdt_probe() more straightforward
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Fri, 1 Feb 2019 09:59:42 +0000 (10:59 +0100)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Fri, 1 Feb 2019 10:45:53 +0000 (11:45 +0100)
Since acpi_ec_dsdt_probe() returns early if boot_ec is set, it is
always unset when that function calls acpi_config_boot_ec() (passing
ec->handle as the handle argument to it).  Thus it is not really
useful to call acpi_config_boot_ec() at that point.  It is sufficient to
call acpi_ec_setup() directly and (if that is successful) set boot_ec,
so make acpi_ec_dsdt_probe() do that and avoid some pointless checks
in acpi_config_boot_ec().

No intentional functional impact except for a changed message.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/acpi/ec.c

index 22b8866aa163b723defda5d40b0f460308dffdf9..adddb2e3466d646af1664495e10e130f78ad51ba 100644 (file)
@@ -1768,9 +1768,16 @@ void __init acpi_ec_dsdt_probe(void)
         * At this point, the GPE is not fully initialized, so do not to
         * handle the events.
         */
-       ret = acpi_config_boot_ec(ec, ec->handle, false, false);
-       if (ret)
+       ret = acpi_ec_setup(ec, false);
+       if (ret) {
                acpi_ec_free(ec);
+               return;
+       }
+
+       boot_ec = ec;
+
+       acpi_handle_info(ec->handle,
+                        "Boot DSDT EC used to handle transactions\n");
 }
 
 /*