From: Axel Lin Date: Tue, 28 Oct 2014 00:59:37 +0000 (+0800) Subject: ASoC: es8328-i2c: Fix i2c_device_id name field in es8328_id X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=b2a9a3b818db727479cc2b9c2924e4ab9a4bbb07;p=deliverable%2Flinux.git ASoC: es8328-i2c: Fix i2c_device_id name field in es8328_id The convention for i2c_device_id name does not need to have company prefix. Signed-off-by: Axel Lin Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/es8328-i2c.c b/sound/soc/codecs/es8328-i2c.c index aae410d122ee..2d05b5d3a6ce 100644 --- a/sound/soc/codecs/es8328-i2c.c +++ b/sound/soc/codecs/es8328-i2c.c @@ -19,7 +19,7 @@ #include "es8328.h" static const struct i2c_device_id es8328_id[] = { - { "everest,es8328", 0 }, + { "es8328", 0 }, { } }; MODULE_DEVICE_TABLE(i2c, es8328_id);