diff options
author | Sameer Pujar <[email protected]> | 2023-09-07 20:32:24 +0530 |
---|---|---|
committer | Mark Brown <[email protected]> | 2023-09-11 01:23:50 +0100 |
commit | f101583fa9f8c3f372d4feb61d67da0ccbf4d9a5 (patch) | |
tree | 07caff7993fd3e6d70a33e0496c86beae9e83324 | |
parent | 0bb80ecc33a8fb5a682236443c1e740d5c917d1d (diff) |
ASoC: soc-utils: Export snd_soc_dai_is_dummy() symbol
Export symbol snd_soc_dai_is_dummy() for usage outside core driver
modules. This is required by Tegra ASoC machine driver.
Signed-off-by: Sameer Pujar <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | sound/soc/soc-utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/soc-utils.c b/sound/soc/soc-utils.c index 11607c5f5d5a..9c746e4edef7 100644 --- a/sound/soc/soc-utils.c +++ b/sound/soc/soc-utils.c @@ -217,6 +217,7 @@ int snd_soc_dai_is_dummy(struct snd_soc_dai *dai) return 1; return 0; } +EXPORT_SYMBOL_GPL(snd_soc_dai_is_dummy); int snd_soc_component_is_dummy(struct snd_soc_component *component) { |