diff options
author | Jerome Brunet <jbrunet@baylibre.com> | 2020-07-29 18:44:56 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-07-30 21:45:02 +0300 |
commit | e44815a295a50027a9953f3ef62827d14631b96b (patch) | |
tree | d215cbeffacd91c7b7b0ac89f9ee46750cd2175a /sound/soc | |
parent | 0d3f01dcdc234001f979a0af0b6b31cb9f25b6c1 (diff) | |
download | linux-e44815a295a50027a9953f3ef62827d14631b96b.tar.xz |
ASoC: meson: cards: remove DT_PREFIX for standard daifmt properties
Standard dai format property don't need the "amlogic," prefix.
There nothing amlogic specific about them. Just remove it.
Fixes: 435857e015dc ("ASoC: meson: align axg card driver with DT bindings documentation")
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
Link: https://lore.kernel.org/r/20200729154456.1983396-5-jbrunet@baylibre.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/meson/meson-card-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/meson/meson-card-utils.c b/sound/soc/meson/meson-card-utils.c index 5a4a91c88734..bacdeaa8e489 100644 --- a/sound/soc/meson/meson-card-utils.c +++ b/sound/soc/meson/meson-card-utils.c @@ -119,7 +119,7 @@ unsigned int meson_card_parse_daifmt(struct device_node *node, struct device_node *framemaster = NULL; unsigned int daifmt; - daifmt = snd_soc_of_parse_daifmt(node, DT_PREFIX, + daifmt = snd_soc_of_parse_daifmt(node, "", &bitclkmaster, &framemaster); daifmt &= ~SND_SOC_DAIFMT_MASTER_MASK; |