diff options
author | Oder Chiou <oder_chiou@realtek.com> | 2015-02-11 12:18:51 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-03-02 18:22:59 +0100 |
commit | ab1f70952f61504f60805f13660c8740adcbe14f (patch) | |
tree | 3610b3855f34bce45020747b3d7d43ac12df0a6f /sound/soc/codecs/rt5677.h | |
parent | Linux 4.0-rc1 (diff) | |
download | linux-ab1f70952f61504f60805f13660c8740adcbe14f.tar.xz linux-ab1f70952f61504f60805f13660c8740adcbe14f.zip |
ASoC: rt5677: Add the chip type to distinguish the setting of the clock source
There is only one clock source in the rt5676, so the chip type is added to
distinguish the setting of the clock source in the VAD function.
Signed-off-by: Oder Chiou <oder_chiou@realtek.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/rt5677.h')
-rw-r--r-- | sound/soc/codecs/rt5677.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sound/soc/codecs/rt5677.h b/sound/soc/codecs/rt5677.h index c0a625f290cc..07df96b43f59 100644 --- a/sound/soc/codecs/rt5677.h +++ b/sound/soc/codecs/rt5677.h @@ -1665,6 +1665,11 @@ enum { RT5677_IRQ_JD3, }; +enum rt5677_type { + RT5677, + RT5676, +}; + struct rt5677_priv { struct snd_soc_codec *codec; struct rt5677_platform_data pdata; @@ -1681,6 +1686,7 @@ struct rt5677_priv { int pll_in; int pll_out; int pow_ldo2; /* POW_LDO2 pin */ + enum rt5677_type type; #ifdef CONFIG_GPIOLIB struct gpio_chip gpio_chip; #endif |