diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2023-06-30 20:21:54 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-07-09 22:47:08 +0100 |
commit | 043bb9c012ee7d092a477159cc66dbdf62fd2666 (patch) | |
tree | 337b55d9f53fc3d3104fc95e6662e2eccdbc7c94 /sound/soc/codecs/rt5677.h | |
parent | c3d42d7baf6b4032171270e3df001fb946493452 (diff) |
ASoC: rt5677: Use device_get_match_data()
Use device_get_match_data() to simplify the code.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20230630172155.83754-4-andriy.shevchenko@linux.intel.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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/rt5677.h b/sound/soc/codecs/rt5677.h index 5932b04cf85e..d67ebae067d9 100644 --- a/sound/soc/codecs/rt5677.h +++ b/sound/soc/codecs/rt5677.h @@ -1691,8 +1691,8 @@ enum { }; enum rt5677_type { - RT5677, - RT5676, + RT5677 = 1, + RT5676 = 2, }; /* ASRC clock source selection */ |