diff options
author | Bard Liao <bardliao@realtek.com> | 2015-04-28 03:59:43 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-04-29 13:18:52 +0200 |
commit | 6e747d5311fc67b5fe7e2d7d242329c1bdff3318 (patch) | |
tree | 7c4c6c346c773ed6cf2d72a72f643d53e075f7eb /sound/soc/codecs/rt5645.h | |
parent | ASoC: rt5645: fixed section mismatch (diff) | |
download | linux-6e747d5311fc67b5fe7e2d7d242329c1bdff3318.tar.xz linux-6e747d5311fc67b5fe7e2d7d242329c1bdff3318.zip |
ASoC: rt5645: Adds push button support for rt5650
rt5650 support headset button detection. Currently, the button detection
is only implemented for rt5650 codec. The button detection configuration
register's default value is different from rt5645.
And we didn't touch the register in the driver, so we will get the wrong
value when we dump the registers. We will fix it in another patch.
Signed-off-by: Bard Liao <bardliao@realtek.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/rt5645.h')
-rw-r--r-- | sound/soc/codecs/rt5645.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sound/soc/codecs/rt5645.h b/sound/soc/codecs/rt5645.h index db78e9462876..4473636521e5 100644 --- a/sound/soc/codecs/rt5645.h +++ b/sound/soc/codecs/rt5645.h @@ -2184,6 +2184,7 @@ struct rt5645_priv { struct i2c_client *i2c; struct snd_soc_jack *hp_jack; struct snd_soc_jack *mic_jack; + struct snd_soc_jack *btn_jack; struct delayed_work jack_detect_work; int codec_type; @@ -2196,9 +2197,12 @@ struct rt5645_priv { int pll_src; int pll_in; int pll_out; + + int jack_type; + bool en_button_func; }; int rt5645_set_jack_detect(struct snd_soc_codec *codec, - struct snd_soc_jack *hp_jack, struct snd_soc_jack *mic_jack); - + struct snd_soc_jack *hp_jack, struct snd_soc_jack *mic_jack, + struct snd_soc_jack *btn_jack); #endif /* __RT5645_H__ */ |