]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
Input: ep93xx_keypad - use guard notation when acquiring mutex
authorDmitry Torokhov <dmitry.torokhov@gmail.com>
Sun, 25 Aug 2024 05:16:08 +0000 (22:16 -0700)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Thu, 3 Oct 2024 15:53:03 +0000 (08:53 -0700)
This makes the code more compact and error handling more robust
by ensuring that mutexes are released in all code paths when control
leaves critical section.

Link: https://lore.kernel.org/r/20240825051627.2848495-5-dmitry.torokhov@gmail.com
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
drivers/input/keyboard/ep93xx_keypad.c

index 6b811d6bf6258c8dd5e5c52f3f6868d5b02bdb64..a8df957ef261bf6c63913be90ec1716255d76922 100644 (file)
@@ -184,15 +184,13 @@ static int ep93xx_keypad_suspend(struct device *dev)
        struct ep93xx_keypad *keypad = platform_get_drvdata(pdev);
        struct input_dev *input_dev = keypad->input_dev;
 
-       mutex_lock(&input_dev->mutex);
+       guard(mutex)(&input_dev->mutex);
 
        if (keypad->enabled) {
                clk_disable(keypad->clk);
                keypad->enabled = false;
        }
 
-       mutex_unlock(&input_dev->mutex);
-
        return 0;
 }
 
@@ -202,7 +200,7 @@ static int ep93xx_keypad_resume(struct device *dev)
        struct ep93xx_keypad *keypad = platform_get_drvdata(pdev);
        struct input_dev *input_dev = keypad->input_dev;
 
-       mutex_lock(&input_dev->mutex);
+       guard(mutex)(&input_dev->mutex);
 
        if (input_device_enabled(input_dev)) {
                if (!keypad->enabled) {
@@ -212,8 +210,6 @@ static int ep93xx_keypad_resume(struct device *dev)
                }
        }
 
-       mutex_unlock(&input_dev->mutex);
-
        return 0;
 }