aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sound/soc/codecs/rt5640.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/rt5640.c b/sound/soc/codecs/rt5640.c
index 0f1b2165e01c..33e080f80585 100644
--- a/sound/soc/codecs/rt5640.c
+++ b/sound/soc/codecs/rt5640.c
@@ -995,7 +995,7 @@ static int rt5640_hp_event(struct snd_soc_dapm_widget *w,
995 995
996 case SND_SOC_DAPM_PRE_PMD: 996 case SND_SOC_DAPM_PRE_PMD:
997 rt5640->hp_mute = 1; 997 rt5640->hp_mute = 1;
998 usleep_range(70000, 75000); 998 msleep(70);
999 break; 999 break;
1000 1000
1001 default: 1001 default:
@@ -1059,7 +1059,7 @@ static int rt5640_hp_post_event(struct snd_soc_dapm_widget *w,
1059 switch (event) { 1059 switch (event) {
1060 case SND_SOC_DAPM_POST_PMU: 1060 case SND_SOC_DAPM_POST_PMU:
1061 if (!rt5640->hp_mute) 1061 if (!rt5640->hp_mute)
1062 usleep_range(80000, 85000); 1062 msleep(80);
1063 1063
1064 break; 1064 break;
1065 1065