Message ID | 20210308221817.12908-2-david.ward@gatech.edu |
---|---|
State | Superseded |
Headers | show |
Series | ASoc: rt286: Fix combojack detection for ALC3263 (Dell XPS 13 9343) | expand |
diff --git a/sound/soc/codecs/rt286.c b/sound/soc/codecs/rt286.c index f9b29782b62a..e16e7237156f 100644 --- a/sound/soc/codecs/rt286.c +++ b/sound/soc/codecs/rt286.c @@ -171,6 +171,9 @@ static bool rt286_readable_register(struct device *dev, unsigned int reg) case RT286_PROC_COEF: case RT286_SET_AMP_GAIN_ADC_IN1: case RT286_SET_AMP_GAIN_ADC_IN2: + case RT286_SET_GPIO_MASK: + case RT286_SET_GPIO_DIRECTION: + case RT286_SET_GPIO_DATA: case RT286_SET_POWER(RT286_DAC_OUT1): case RT286_SET_POWER(RT286_DAC_OUT2): case RT286_SET_POWER(RT286_ADC_IN1):
Otherwise, the GPIO configuration for the Dell XPS 13 9343 is not actually applied, so the headset microphone does not work. BugLink: https://bugzilla.kernel.org/show_bug.cgi?id=114171 Signed-off-by: David Ward <david.ward@gatech.edu> --- sound/soc/codecs/rt286.c | 3 +++ 1 file changed, 3 insertions(+)