aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Griffin <peter.griffin@linaro.org>2016-08-26 15:36:13 +0100
committerPeter Griffin <peter.griffin@linaro.org>2016-09-02 11:37:16 +0100
commitfdc5f3256acbaf060e9c3051053b0f7f89bc8d44 (patch)
treee2f4a5688c7df9a3735ddd3031c5c3f24ac9f3d9
parentf60754a24c3ebe9d45fb28ad767688e5f9bc8fdb (diff)
Underfined asoc symbol workaroundv4.8-rc3-temp-fdma-hackery
Signed-off-by: Peter Griffin <peter.griffin@linaro.org>
-rw-r--r--sound/soc/generic/Makefile5
-rw-r--r--sound/soc/generic/simple-card-utils.c6
2 files changed, 9 insertions, 2 deletions
diff --git a/sound/soc/generic/Makefile b/sound/soc/generic/Makefile
index 45602ca8536e..fa4bca328d88 100644
--- a/sound/soc/generic/Makefile
+++ b/sound/soc/generic/Makefile
@@ -1,5 +1,6 @@
-obj-$(CONFIG_SND_SIMPLE_CARD_UTILS) := simple-card-utils.o
snd-soc-simple-card-objs := simple-card.o
+snd-soc-simple-card-utils-objs := simple-card-utils.o
-obj-$(CONFIG_SND_SIMPLE_CARD) += snd-soc-simple-card.o
+obj-$(CONFIG_SND_SIMPLE_CARD_UTILS) += snd-soc-simple-card-utils.o
+obj-$(CONFIG_SND_SIMPLE_CARD) += snd-soc-simple-card.o
diff --git a/sound/soc/generic/simple-card-utils.c b/sound/soc/generic/simple-card-utils.c
index d89a9a1b2471..7fbf38af64b4 100644
--- a/sound/soc/generic/simple-card-utils.c
+++ b/sound/soc/generic/simple-card-utils.c
@@ -9,6 +9,7 @@
*/
#include <linux/of.h>
#include <sound/simple_card_utils.h>
+#include <linux/module.h>
int asoc_simple_card_parse_daifmt(struct device *dev,
struct device_node *node,
@@ -95,3 +96,8 @@ int asoc_simple_card_parse_card_name(struct snd_soc_card *card,
return 0;
}
EXPORT_SYMBOL_GPL(asoc_simple_card_parse_card_name);
+
+/* Module information */
+MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");
+MODULE_DESCRIPTION("ALSA SoC Simple Card Utils");
+MODULE_LICENSE("GPL v2");