OSDN Git Service

ACPI: EC: Pass one argument to acpi_ec_query()
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 23 Nov 2021 18:38:21 +0000 (19:38 +0100)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 1 Dec 2021 19:17:32 +0000 (20:17 +0100)
commit1f2350443dd21028d3de6907f98ff1be75a2c9bc
treea4bd2aaf821c30b975b6c96b7fe30c87b2cd92c3
parentca8283dcd933a2ca776fade77fb4527321521463
ACPI: EC: Pass one argument to acpi_ec_query()

Notice that the second argument to acpi_ec_query() is redundant,
because in the only case when it is not NULL, the value passed
through it is only checked against 0 and it can only be 0 when
acpi_ec_query() returns an error code, but its return value
is checked along with the value passed through its second
argument.

Accordingly, modify acpi_ec_query() to take only one argument
and while at it, change its handling of the case when
acpi_ec_transaction() returns an error so as to return that
error value to the caller right away.

No expected functional impact.

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