From: Kailang Yang Date: Thu, 24 Oct 2013 13:45:24 +0000 (+0200) Subject: ALSA: hda/realtek - Raise the delay for alc283_shutup X-Git-Tag: v3.13-rc1~2^2~112 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=88011c0911ee7a1b001393662b9884fb7f32eec6;p=profile%2Fcommon%2Fkernel-common.git ALSA: hda/realtek - Raise the delay for alc283_shutup Some machine with 85ms delay might be happen pop noise when codec enter to D3. Raise up to 100ms delay will be match for more machine. Signed-off-by: Kailang Yang Signed-off-by: Takashi Iwai --- diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 3016467c..dde858b 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -2656,7 +2656,7 @@ static void alc283_shutup(struct hda_codec *codec) AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); if (hp_pin_sense) - msleep(85); + msleep(100); snd_hda_codec_write(codec, hp_pin, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); @@ -2665,7 +2665,7 @@ static void alc283_shutup(struct hda_codec *codec) alc_write_coef_idx(codec, 0x46, val | (3 << 12)); if (hp_pin_sense) - msleep(85); + msleep(100); snd_hda_shutup_pins(codec); alc_write_coef_idx(codec, 0x43, 0x9614); }