summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorGeorge Stark <gnstark@salutedevices.com>2023-12-14 20:36:05 +0300
committerSasha Levin <sashal@kernel.org>2024-03-27 01:20:52 +0300
commitd1f384e4c2011a90c2025fabe95476c6fdb6888d (patch)
treea17861d6a3bdf118bfd34addd53c273db5c4a256 /drivers
parentc2c32faae82fd08b27b2f8b782acefe949638774 (diff)
downloadlinux-d1f384e4c2011a90c2025fabe95476c6fdb6888d.tar.xz
leds: aw2013: Unlock mutex before destroying it
[ Upstream commit 6969d0a2ba1adc9ba6a49b9805f24080896c255c ] 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> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/leds/leds-aw2013.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/leds/leds-aw2013.c b/drivers/leds/leds-aw2013.c
index 0b52fc9097c6..3c05958578a1 100644
--- a/drivers/leds/leds-aw2013.c
+++ b/drivers/leds/leds-aw2013.c
@@ -397,6 +397,7 @@ error_reg:
regulator_disable(chip->vcc_regulator);
error:
+ mutex_unlock(&chip->mutex);
mutex_destroy(&chip->mutex);
return ret;
}