Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e43a7d41 authored by Mike Frysinger's avatar Mike Frysinger Committed by Mark Brown
Browse files

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: default avatarMike Frysinger <vapier@gentoo.org>
Acked-by: default avatarLiam Girdwood <lrg@ti.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 370fd17d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -423,7 +423,7 @@ static int __devexit ad193x_spi_remove(struct spi_device *spi)

static struct spi_driver ad193x_spi_driver = {
	.driver = {
		.name	= "ad193x-codec",
		.name	= "ad193x",
		.owner	= THIS_MODULE,
	},
	.probe		= ad193x_spi_probe,
@@ -468,7 +468,7 @@ static int __devexit ad193x_i2c_remove(struct i2c_client *client)

static struct i2c_driver ad193x_i2c_driver = {
	.driver = {
		.name = "ad193x-codec",
		.name = "ad193x",
	},
	.probe    = ad193x_i2c_probe,
	.remove   = __devexit_p(ad193x_i2c_remove),