From: Mike Frysinger Date: Sun, 27 Mar 2011 04:44:10 +0000 (-0400) Subject: ASoC: SSM2602: fix codec name X-Git-Tag: upstream/snapshot3+hdmi~7307^2~1224^2~29 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2a161018914d7f12ed73991d1aedb609fdba3fcf;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git ASoC: SSM2602: 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 Acked-by: Liam Girdwood Signed-off-by: Mark Brown --- 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,