diff options
author | George Stark <gnstark@salutedevices.com> | 2023-12-14 20:36:05 +0300 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2024-03-07 11:48:10 +0300 |
commit | 6969d0a2ba1adc9ba6a49b9805f24080896c255c (patch) | |
tree | a262ea98901a874fa0c38252a7eb61e633b1e002 /drivers | |
parent | bfa0f02d75860437a3271dcde5030ea610b1bd56 (diff) | |
download | linux-6969d0a2ba1adc9ba6a49b9805f24080896c255c.tar.xz |
leds: aw2013: Unlock mutex before destroying it
In the probe() callback in case of error mutex is destroyed being locked
which is not allowed so unlock the mutex before destroying.
Fixes: 59ea3c9faf32 ("leds: add aw2013 driver")
Signed-off-by: George Stark <gnstark@salutedevices.com>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Link: https://lore.kernel.org/r/20231214173614.2820929-2-gnstark@salutedevices.com
Signed-off-by: Lee Jones <lee@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/leds/leds-aw2013.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/leds/leds-aw2013.c b/drivers/leds/leds-aw2013.c index 91f44b23cb11..17235a5e576a 100644 --- a/drivers/leds/leds-aw2013.c +++ b/drivers/leds/leds-aw2013.c @@ -405,6 +405,7 @@ error_reg: chip->regulators); error: + mutex_unlock(&chip->mutex); mutex_destroy(&chip->mutex); return ret; } |