]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
ACPI: button: Eliminate ternary operator from acpi_lid_evaluate_state()
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Mon, 1 Jun 2026 16:59:06 +0000 (18:59 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Mon, 1 Jun 2026 17:17:49 +0000 (19:17 +0200)
The ternary operator in acpi_lid_evaluate_state() is not actually needed
because the same result can be achieved by applying the !! operator to
the lid_state value, so update the code accordingly.

No intentional functional impact.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Link: https://patch.msgid.link/3055906.e9J7NaK4W3@rafael.j.wysocki
drivers/acpi/button.c

index 21a10da8b60b3a2322c47e1063134a72ef12713a..ae97c83bae2cd098d1ec99f17587b630976ca38e 100644 (file)
@@ -201,7 +201,7 @@ static int acpi_lid_evaluate_state(acpi_handle lid_handle)
        if (ACPI_FAILURE(status))
                return -ENODEV;
 
-       return lid_state ? 1 : 0;
+       return !!lid_state;
 }
 
 static int acpi_lid_notify_state(struct acpi_button *button, bool state)