aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2011-03-27 00:44:12 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-03-29 18:17:16 -0400
commite43a7d4116c868676eca329c4211bc5cc5a93a9b (patch)
tree4687b7567a012f525a60f9814dcf072b8fae5ad1 /sound/soc/codecs
parent370fd17dea6056cdb2fbbca47812cf96d2a02726 (diff)
ASoC: ad193x: fix codec name
The codec name should not have a "-codec" suffix since this is not part of a MFD. This was incorrectly changed during the multi-component updated. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Acked-by: Liam Girdwood <lrg@ti.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/codecs')
-rw-r--r--sound/soc/codecs/ad193x.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/ad193x.c b/sound/soc/codecs/ad193x.c
index 824529d5c776..2374ca5ffe68 100644
--- a/sound/soc/codecs/ad193x.c
+++ b/sound/soc/codecs/ad193x.c
@@ -423,7 +423,7 @@ static int __devexit ad193x_spi_remove(struct spi_device *spi)
423 423
424static struct spi_driver ad193x_spi_driver = { 424static struct spi_driver ad193x_spi_driver = {
425 .driver = { 425 .driver = {
426 .name = "ad193x-codec", 426 .name = "ad193x",
427 .owner = THIS_MODULE, 427 .owner = THIS_MODULE,
428 }, 428 },
429 .probe = ad193x_spi_probe, 429 .probe = ad193x_spi_probe,
@@ -468,7 +468,7 @@ static int __devexit ad193x_i2c_remove(struct i2c_client *client)
468 468
469static struct i2c_driver ad193x_i2c_driver = { 469static struct i2c_driver ad193x_i2c_driver = {
470 .driver = { 470 .driver = {
471 .name = "ad193x-codec", 471 .name = "ad193x",
472 }, 472 },
473 .probe = ad193x_i2c_probe, 473 .probe = ad193x_i2c_probe,
474 .remove = __devexit_p(ad193x_i2c_remove), 474 .remove = __devexit_p(ad193x_i2c_remove),