summaryrefslogtreecommitdiffstats
path: root/sound/soc/generic
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2016-08-25 01:58:31 +0000
committerMark Brown <broonie@kernel.org>2016-09-01 21:21:39 +0100
commitf4d70709c80d907a841e8ffc40995eca661817e6 (patch)
tree59c01b06e03da7d03a54d752c983730c01824621 /sound/soc/generic
parente5a01eb5fc6f0e77033f005e6b5f7fb8b4ea837f (diff)
downloadlinux-f4d70709c80d907a841e8ffc40995eca661817e6.tar.bz2
ASoC: simple-scu-card: code sync: move asoc_simple_card_of_match
simple sound card family are using very similar style, but because of its historical reason, there are small differences. For example pointer style, function name, caller postion etc... This patch synchronized simple card style to other simple card family This patch moves asoc_simple_card_of_match to bottom side, and rename it to asoc_simple_of_match same as other simple card family. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/generic')
-rw-r--r--sound/soc/generic/simple-scu-card.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/sound/soc/generic/simple-scu-card.c b/sound/soc/generic/simple-scu-card.c
index 2f40f9c2927c..abe31dcfb4e7 100644
--- a/sound/soc/generic/simple-scu-card.c
+++ b/sound/soc/generic/simple-scu-card.c
@@ -22,13 +22,6 @@
#include <sound/soc-dai.h>
#include <sound/simple_card_utils.h>
-static const struct of_device_id asoc_simple_card_of_match[] = {
- { .compatible = "renesas,rsrc-card", },
- { .compatible = "simple-scu-audio-card", },
- {},
-};
-MODULE_DEVICE_TABLE(of, asoc_simple_card_of_match);
-
struct asoc_simple_card_priv {
struct snd_soc_card snd_card;
struct snd_soc_codec_conf codec_conf;
@@ -329,10 +322,17 @@ static int asoc_simple_card_remove(struct platform_device *pdev)
return asoc_simple_card_clean_reference(card);
}
+static const struct of_device_id asoc_simple_of_match[] = {
+ { .compatible = "renesas,rsrc-card", },
+ { .compatible = "simple-scu-audio-card", },
+ {},
+};
+MODULE_DEVICE_TABLE(of, asoc_simple_of_match);
+
static struct platform_driver asoc_simple_card = {
.driver = {
.name = "simple-scu-audio-card",
- .of_match_table = asoc_simple_card_of_match,
+ .of_match_table = asoc_simple_of_match,
},
.probe = asoc_simple_card_probe,
.remove = asoc_simple_card_remove,