leds: aw2013: Unlock mutex before destroying it

[ Upstream commit 6969d0a2ba ]

In the probe() callback in case of error mutex is destroyed being locked
which is not allowed so unlock the mutex before destroying.

Fixes: 59ea3c9faf ("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>
This commit is contained in:
George Stark 2023-12-14 20:36:05 +03:00 committed by Sasha Levin
parent c2c32faae8
commit d1f384e4c2
1 changed files with 1 additions and 0 deletions

View File

@ -397,6 +397,7 @@ error_reg:
regulator_disable(chip->vcc_regulator);
error:
mutex_unlock(&chip->mutex);
mutex_destroy(&chip->mutex);
return ret;
}