diff options
author | Stephen Warren <swarren@nvidia.com> | 2013-03-27 02:38:19 +0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-03-27 02:52:26 +0400 |
commit | 2e1cc199fc8666ac5fda200e8a99f1e4dea07175 (patch) | |
tree | 4c153c223fd169bf4aa9f7da26d54054b2536fc7 /sound/soc/soc-core.c | |
parent | 0a09dfa04177df5a2e9eeeeaf527efd35c531d11 (diff) | |
download | linux-2e1cc199fc8666ac5fda200e8a99f1e4dea07175.tar.xz |
ASoC: export snd_soc_register_component
Without this, modules will fail to link against those symbols.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/soc-core.c')
-rw-r--r-- | sound/soc/soc-core.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index f6cda7b6ce44..fb50e00a71e4 100644 --- a/sound/soc/soc-core.c +++ b/sound/soc/soc-core.c @@ -4192,6 +4192,7 @@ error_component_name: return ret; } +EXPORT_SYMBOL_GPL(snd_soc_register_component); /** * snd_soc_unregister_component - Unregister a component from the ASoC core @@ -4217,6 +4218,7 @@ found: dev_dbg(dev, "ASoC: Unregistered component '%s'\n", cmpnt->name); kfree(cmpnt->name); } +EXPORT_SYMBOL_GPL(snd_soc_unregister_component); /* Retrieve a card's name from device tree */ int snd_soc_of_parse_card_name(struct snd_soc_card *card, |