aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Warren <swarren@nvidia.com>2013-03-26 18:38:19 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2013-03-26 18:52:26 -0400
commit2e1cc199fc8666ac5fda200e8a99f1e4dea07175 (patch)
tree4c153c223fd169bf4aa9f7da26d54054b2536fc7
parent0a09dfa04177df5a2e9eeeeaf527efd35c531d11 (diff)
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>
-rw-r--r--sound/soc/soc-core.c2
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:
4192 4192
4193 return ret; 4193 return ret;
4194} 4194}
4195EXPORT_SYMBOL_GPL(snd_soc_register_component);
4195 4196
4196/** 4197/**
4197 * snd_soc_unregister_component - Unregister a component from the ASoC core 4198 * snd_soc_unregister_component - Unregister a component from the ASoC core
@@ -4217,6 +4218,7 @@ found:
4217 dev_dbg(dev, "ASoC: Unregistered component '%s'\n", cmpnt->name); 4218 dev_dbg(dev, "ASoC: Unregistered component '%s'\n", cmpnt->name);
4218 kfree(cmpnt->name); 4219 kfree(cmpnt->name);
4219} 4220}
4221EXPORT_SYMBOL_GPL(snd_soc_unregister_component);
4220 4222
4221/* Retrieve a card's name from device tree */ 4223/* Retrieve a card's name from device tree */
4222int snd_soc_of_parse_card_name(struct snd_soc_card *card, 4224int snd_soc_of_parse_card_name(struct snd_soc_card *card,