Skip to content

Commit

Permalink
ASoC: ad193x: fix codec name
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Mike Frysinger authored and Mark Brown committed Mar 29, 2011
1 parent 370fd17 commit e43a7d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sound/soc/codecs/ad193x.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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),
Expand Down

0 comments on commit e43a7d4

Please sign in to comment.