ACPI: EC: Avoid queuing unnecessary work in acpi_ec_submit_event()
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 23 Nov 2021 18:43:05 +0000 (19:43 +0100)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 1 Dec 2021 19:17:32 +0000 (20:17 +0100)
commitc793570d8725e44b64dbe466eb8ecda34c5eb8ac
tree83097b94fee9e1585cb8d42a68a16bf5b2ba37c1
parenteafe7509ab8c8a200a169bc378fc9a56164acc66
ACPI: EC: Avoid queuing unnecessary work in acpi_ec_submit_event()

Notice that it is not necessary to queue up the event work again
if the while () loop in acpi_ec_event_handler() is still running
which is the case if nr_pending_queries is greater than 0 at the
beginning of acpi_ec_submit_event() and modify the code to avoid
doing that.

While at it, rename nr_pending_queries in struct acpi_ec to
events_to_process which actually matches the role of that field
and change its data type to unsigned int which is sufficient.

No expected functional impact.

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