diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2015-11-19 05:22:14 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-11-20 19:06:44 +0100 |
commit | 5547ba616b964de05ba48ec4d529ed1ac22a4326 (patch) | |
tree | 7332738c7bea28392ba3fdac2ec7edf7ca76fe2d /sound/soc/codecs/ak4613.c | |
parent | ASoC: ak4613: don't overwrite CTRL2 register (diff) | |
download | linux-5547ba616b964de05ba48ec4d529ed1ac22a4326.tar.xz linux-5547ba616b964de05ba48ec4d529ed1ac22a4326.zip |
ASoC: ak4613: tidyup vendor prefix from ak4613 to asahi-kasei
a3af0c65("ASoC: ak4613: add single-end optional property for IN/OUT pins")
added IN/OUT pin single-end optional property, but it used "ak4613" as
vendor prefix. This patch fixup to asahi-kasei.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/ak4613.c')
-rw-r--r-- | sound/soc/codecs/ak4613.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/ak4613.c b/sound/soc/codecs/ak4613.c index 62c08a6395af..647f69de6baa 100644 --- a/sound/soc/codecs/ak4613.c +++ b/sound/soc/codecs/ak4613.c @@ -464,14 +464,14 @@ static void ak4613_parse_of(struct ak4613_priv *priv, /* Input 1 - 2 */ for (i = 0; i < 2; i++) { - snprintf(prop, sizeof(prop), "ak4613,in%d-single-end", i + 1); + snprintf(prop, sizeof(prop), "asahi-kasei,in%d-single-end", i + 1); if (!of_get_property(np, prop, NULL)) priv->ic |= 1 << i; } /* Output 1 - 6 */ for (i = 0; i < 6; i++) { - snprintf(prop, sizeof(prop), "ak4613,out%d-single-end", i + 1); + snprintf(prop, sizeof(prop), "asahi-kasei,out%d-single-end", i + 1); if (!of_get_property(np, prop, NULL)) priv->oc |= 1 << i; } |