alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ASoC: SSM2602: fix codec name
@ 2011-03-27  4:44 Mike Frysinger
  2011-03-27  4:44 ` [PATCH] ASoC: ad73311: " Mike Frysinger
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: Mike Frysinger @ 2011-03-27  4:44 UTC (permalink / raw)
  To: alsa-devel, Liam Girdwood, Mark Brown; +Cc: device-drivers-devel

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>
---
 sound/soc/codecs/ssm2602.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/sound/soc/codecs/ssm2602.c b/sound/soc/codecs/ssm2602.c
index 2727bef..5a5a6b1 100644
--- a/sound/soc/codecs/ssm2602.c
+++ b/sound/soc/codecs/ssm2602.c
@@ -651,7 +651,7 @@ MODULE_DEVICE_TABLE(i2c, ssm2602_i2c_id);
 /* corgi i2c codec control layer */
 static struct i2c_driver ssm2602_i2c_driver = {
 	.driver = {
-		.name = "ssm2602-codec",
+		.name = "ssm2602",
 		.owner = THIS_MODULE,
 	},
 	.probe = ssm2602_i2c_probe,
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH] ASoC: ad73311: fix codec name
  2011-03-27  4:44 [PATCH] ASoC: SSM2602: fix codec name Mike Frysinger
@ 2011-03-27  4:44 ` Mike Frysinger
  2011-03-29 20:26   ` Liam Girdwood
  2011-03-27  4:44 ` [PATCH] ASoC: ad193x: " Mike Frysinger
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 7+ messages in thread
From: Mike Frysinger @ 2011-03-27  4:44 UTC (permalink / raw)
  To: alsa-devel, Liam Girdwood, Mark Brown; +Cc: device-drivers-devel

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>
---
 sound/soc/codecs/ad73311.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/sound/soc/codecs/ad73311.c b/sound/soc/codecs/ad73311.c
index de799cd..8d793e9 100644
--- a/sound/soc/codecs/ad73311.c
+++ b/sound/soc/codecs/ad73311.c
@@ -55,7 +55,7 @@ static int __devexit ad73311_remove(struct platform_device *pdev)
 
 static struct platform_driver ad73311_codec_driver = {
 	.driver = {
-			.name = "ad73311-codec",
+			.name = "ad73311",
 			.owner = THIS_MODULE,
 	},
 
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH] ASoC: ad193x: fix codec name
  2011-03-27  4:44 [PATCH] ASoC: SSM2602: fix codec name Mike Frysinger
  2011-03-27  4:44 ` [PATCH] ASoC: ad73311: " Mike Frysinger
@ 2011-03-27  4:44 ` Mike Frysinger
  2011-03-27  4:44 ` [PATCH] ASoC: ad1980: " Mike Frysinger
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Mike Frysinger @ 2011-03-27  4:44 UTC (permalink / raw)
  To: alsa-devel, Liam Girdwood, Mark Brown; +Cc: device-drivers-devel

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>
---
 sound/soc/codecs/ad193x.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sound/soc/codecs/ad193x.c b/sound/soc/codecs/ad193x.c
index 824529d..2374ca5 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)
 
 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),
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH] ASoC: ad1980: fix codec name
  2011-03-27  4:44 [PATCH] ASoC: SSM2602: fix codec name Mike Frysinger
  2011-03-27  4:44 ` [PATCH] ASoC: ad73311: " Mike Frysinger
  2011-03-27  4:44 ` [PATCH] ASoC: ad193x: " Mike Frysinger
@ 2011-03-27  4:44 ` Mike Frysinger
  2011-03-29 20:26 ` [PATCH] ASoC: SSM2602: " Liam Girdwood
  2011-03-29 22:18 ` Mark Brown
  4 siblings, 0 replies; 7+ messages in thread
From: Mike Frysinger @ 2011-03-27  4:44 UTC (permalink / raw)
  To: alsa-devel, Liam Girdwood, Mark Brown; +Cc: device-drivers-devel

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>
---
 sound/soc/codecs/ad1980.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/sound/soc/codecs/ad1980.c b/sound/soc/codecs/ad1980.c
index 34cb51e..923b364 100644
--- a/sound/soc/codecs/ad1980.c
+++ b/sound/soc/codecs/ad1980.c
@@ -266,7 +266,7 @@ static int __devexit ad1980_remove(struct platform_device *pdev)
 
 static struct platform_driver ad1980_codec_driver = {
 	.driver = {
-			.name = "ad1980-codec",
+			.name = "ad1980",
 			.owner = THIS_MODULE,
 	},
 
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH] ASoC: SSM2602: fix codec name
  2011-03-27  4:44 [PATCH] ASoC: SSM2602: fix codec name Mike Frysinger
                   ` (2 preceding siblings ...)
  2011-03-27  4:44 ` [PATCH] ASoC: ad1980: " Mike Frysinger
@ 2011-03-29 20:26 ` Liam Girdwood
  2011-03-29 22:18 ` Mark Brown
  4 siblings, 0 replies; 7+ messages in thread
From: Liam Girdwood @ 2011-03-29 20:26 UTC (permalink / raw)
  To: Mike Frysinger; +Cc: alsa-devel, Mark Brown, device-drivers-devel

On Sun, 2011-03-27 at 00:44 -0400, Mike Frysinger wrote:
> 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>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] ASoC: ad73311: fix codec name
  2011-03-27  4:44 ` [PATCH] ASoC: ad73311: " Mike Frysinger
@ 2011-03-29 20:26   ` Liam Girdwood
  0 siblings, 0 replies; 7+ messages in thread
From: Liam Girdwood @ 2011-03-29 20:26 UTC (permalink / raw)
  To: Mike Frysinger; +Cc: alsa-devel, Mark Brown, device-drivers-devel

On Sun, 2011-03-27 at 00:44 -0400, Mike Frysinger wrote:
> 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>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] ASoC: SSM2602: fix codec name
  2011-03-27  4:44 [PATCH] ASoC: SSM2602: fix codec name Mike Frysinger
                   ` (3 preceding siblings ...)
  2011-03-29 20:26 ` [PATCH] ASoC: SSM2602: " Liam Girdwood
@ 2011-03-29 22:18 ` Mark Brown
  4 siblings, 0 replies; 7+ messages in thread
From: Mark Brown @ 2011-03-29 22:18 UTC (permalink / raw)
  To: Mike Frysinger; +Cc: alsa-devel, device-drivers-devel, Liam Girdwood

On Sun, Mar 27, 2011 at 12:44:10AM -0400, Mike Frysinger wrote:
> 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>

Applied all, thanks.

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2011-03-29 22:18 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-27  4:44 [PATCH] ASoC: SSM2602: fix codec name Mike Frysinger
2011-03-27  4:44 ` [PATCH] ASoC: ad73311: " Mike Frysinger
2011-03-29 20:26   ` Liam Girdwood
2011-03-27  4:44 ` [PATCH] ASoC: ad193x: " Mike Frysinger
2011-03-27  4:44 ` [PATCH] ASoC: ad1980: " Mike Frysinger
2011-03-29 20:26 ` [PATCH] ASoC: SSM2602: " Liam Girdwood
2011-03-29 22:18 ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).