This is a note to let you know that I've just added the patch titled ASoC: rt5665: add missed regulator_bulk_disable to the 4.14-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: asoc-rt5665-add-missed-regulator_bulk_disable.patch and it can be found in the queue-4.14 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From c163108e706909570f8aa9aa5bcf6806e2b4c98c Mon Sep 17 00:00:00 2001 From: Zhang Shurong <zhang_shurong@xxxxxxxxxxx> Date: Tue, 1 Aug 2023 23:59:11 +0800 Subject: ASoC: rt5665: add missed regulator_bulk_disable From: Zhang Shurong <zhang_shurong@xxxxxxxxxxx> commit c163108e706909570f8aa9aa5bcf6806e2b4c98c upstream. The driver forgets to call regulator_bulk_disable() Add the missed call to fix it. Fixes: 33ada14a26c8 ("ASoC: add rt5665 codec driver") Signed-off-by: Zhang Shurong <zhang_shurong@xxxxxxxxxxx> Link: https://lore.kernel.org/r/tencent_A560D01E3E0A00A85A12F137E4B5205B3508@xxxxxx Signed-off-by: Mark Brown <broonie@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- sound/soc/codecs/rt5665.c | 2 ++ 1 file changed, 2 insertions(+) --- a/sound/soc/codecs/rt5665.c +++ b/sound/soc/codecs/rt5665.c @@ -4957,6 +4957,8 @@ static void rt5665_i2c_shutdown(struct i struct rt5665_priv *rt5665 = i2c_get_clientdata(client); regmap_write(rt5665->regmap, RT5665_RESET, 0); + + regulator_bulk_disable(ARRAY_SIZE(rt5665->supplies), rt5665->supplies); } #ifdef CONFIG_OF Patches currently in stable-queue which might be from zhang_shurong@xxxxxxxxxxx are queue-4.14/asoc-rt5665-add-missed-regulator_bulk_disable.patch