Commit cd573917 authored by Lu Guanqun's avatar Lu Guanqun Committed by Greg Kroah-Hartman

intel_sst: Set de-bounce time

In order to make jack detection behave properly, we have to set
the de-bounce time, otherwise, some weird events happens:
e.g. no plug-out event seen.
Signed-off-by: default avatarLu Guanqun <guanqun.lu@intel.com>
Signed-off-by: default avatarAlan Cox <alan@linux.intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 8a251ff2
...@@ -83,6 +83,7 @@ enum reg_v3 { ...@@ -83,6 +83,7 @@ enum reg_v3 {
HPLMIXSEL = 0x12b, HPLMIXSEL = 0x12b,
HPRMIXSEL = 0x12c, HPRMIXSEL = 0x12c,
LOANTIPOP = 0x12d, LOANTIPOP = 0x12d,
AUXDBNC = 0x12f,
}; };
/**** /****
...@@ -859,7 +860,10 @@ static int nc_set_selected_input_dev(u8 value) ...@@ -859,7 +860,10 @@ static int nc_set_selected_input_dev(u8 value)
sc_access[3].reg_addr = 0x105; sc_access[3].reg_addr = 0x105;
sc_access[3].value = 0x40; sc_access[3].value = 0x40;
sc_access[3].mask = MASK6; sc_access[3].mask = MASK6;
num_val = 4; sc_access[4].reg_addr = AUXDBNC;
sc_access[4].mask = MASK7|MASK6|MASK5|MASK4|MASK3|MASK2|MASK1|MASK0;
sc_access[4].value = 0xff;
num_val = 5;
break; break;
case DMIC: case DMIC:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment