From: Pascal Huerst Date: Thu, 2 Apr 2015 08:17:40 +0000 (+0200) Subject: ASoC: cs4271: Increase delay time after reset X-Git-Tag: v3.18.14~98 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8003c8f02736ffb3625f66c91a5ad1e5b4ead4a2;p=thirdparty%2Fkernel%2Fstable.git ASoC: cs4271: Increase delay time after reset [ Upstream commit 74ff960222d90999508b4ba0d3449f796695b6d5 ] The delay time after a reset in the codec probe callback was too short, and did not work on certain hw because the codec needs more time to power on. This increases the delay time from 1us to 1ms. Signed-off-by: Pascal Huerst Acked-by: Brian Austin Signed-off-by: Mark Brown Cc: stable@vger.kernel.org Signed-off-by: Sasha Levin --- diff --git a/sound/soc/codecs/cs4271.c b/sound/soc/codecs/cs4271.c index 6ec074fec0683..38c2adc997708 100644 --- a/sound/soc/codecs/cs4271.c +++ b/sound/soc/codecs/cs4271.c @@ -561,10 +561,10 @@ static int cs4271_probe(struct snd_soc_codec *codec) if (gpio_is_valid(cs4271->gpio_nreset)) { /* Reset codec */ gpio_direction_output(cs4271->gpio_nreset, 0); - udelay(1); + mdelay(1); gpio_set_value(cs4271->gpio_nreset, 1); /* Give the codec time to wake up */ - udelay(1); + mdelay(1); } ret = regmap_update_bits(cs4271->regmap, CS4271_MODE2,