mirror of
https://github.com/torvalds/linux.git
synced 2026-06-01 19:13:47 +02:00
Input: pmic8xxx-keypad - use guard notation when acquiring mutex
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-14-dmitry.torokhov@gmail.com Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
parent
a49e229319
commit
9e09354cb6
|
|
@ -630,12 +630,10 @@ static int pmic8xxx_kp_suspend(struct device *dev)
|
|||
if (device_may_wakeup(dev)) {
|
||||
enable_irq_wake(kp->key_sense_irq);
|
||||
} else {
|
||||
mutex_lock(&input_dev->mutex);
|
||||
guard(mutex)(&input_dev->mutex);
|
||||
|
||||
if (input_device_enabled(input_dev))
|
||||
pmic8xxx_kp_disable(kp);
|
||||
|
||||
mutex_unlock(&input_dev->mutex);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
|
@ -650,12 +648,10 @@ static int pmic8xxx_kp_resume(struct device *dev)
|
|||
if (device_may_wakeup(dev)) {
|
||||
disable_irq_wake(kp->key_sense_irq);
|
||||
} else {
|
||||
mutex_lock(&input_dev->mutex);
|
||||
guard(mutex)(&input_dev->mutex);
|
||||
|
||||
if (input_device_enabled(input_dev))
|
||||
pmic8xxx_kp_enable(kp);
|
||||
|
||||
mutex_unlock(&input_dev->mutex);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user