diff mbox series

[v2] platform/x86: thinkpad_acpi: Take mutex in hotkey_resume

Message ID 20230914002500.201442-2-admin@dennisbonke.com (mailing list archive)
State Superseded, archived
Headers show
Series [v2] platform/x86: thinkpad_acpi: Take mutex in hotkey_resume | expand

Commit Message

Dennis Bonke Sept. 14, 2023, 12:25 a.m. UTC
hotkey_status_set expects the hotkey_mutex to be held.
It seems like it was missed here and that gives lockdep
warnings while resuming.

Signed-off-by: Dennis Bonke <admin@dennisbonke.com>
---
 drivers/platform/x86/thinkpad_acpi.c | 2 ++
 1 file changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c
index d70c89d32534..41584427dc32 100644
--- a/drivers/platform/x86/thinkpad_acpi.c
+++ b/drivers/platform/x86/thinkpad_acpi.c
@@ -4116,9 +4116,11 @@  static void hotkey_resume(void)
 {
 	tpacpi_disable_brightness_delay();
 
+	mutex_lock(&hotkey_mutex);
 	if (hotkey_status_set(true) < 0 ||
 	    hotkey_mask_set(hotkey_acpi_mask) < 0)
 		pr_err("error while attempting to reset the event firmware interface\n");
+	mutex_unlock(&hotkey_mutex);
 
 	tpacpi_send_radiosw_update();
 	tpacpi_input_send_tabletsw();