diff --git a/sound/soc/codecs/rt298.c b/sound/soc/codecs/rt298.c index 75e5679dfef8f531eaf976b90cf6e0b492b3531d..3c2f0f8d6266e358a667aa376fea3d094829845a 100644 --- a/sound/soc/codecs/rt298.c +++ b/sound/soc/codecs/rt298.c @@ -1144,8 +1144,6 @@ static int rt298_i2c_probe(struct i2c_client *i2c, const struct acpi_device_id *acpiid; int i, ret; - pr_info("%s\n", __func__); - rt298 = devm_kzalloc(&i2c->dev, sizeof(*rt298), GFP_KERNEL); if (NULL == rt298) diff --git a/sound/soc/codecs/rt5640.c b/sound/soc/codecs/rt5640.c index a37223f7307adf8880ebfecee4414ba6449c25f4..b4139d3da33468c1fa8492b0d8ab2f59a017fe17 100644 --- a/sound/soc/codecs/rt5640.c +++ b/sound/soc/codecs/rt5640.c @@ -2242,7 +2242,7 @@ static int rt5640_i2c_probe(struct i2c_client *i2c, regmap_read(rt5640->regmap, RT5640_VENDOR_ID2, &val); if (val != RT5640_DEVICE_ID) { dev_err(&i2c->dev, - "Device with ID register %x is not rt5640/39\n", val); + "Device with ID register %#x is not rt5640/39\n", val); return -ENODEV; } diff --git a/sound/soc/codecs/rt5651.c b/sound/soc/codecs/rt5651.c index f2026a962e57dd5f657e746bda4e21002c495d5d..8f7159ba6ca2657219d04839636b82a4edde9f8b 100644 --- a/sound/soc/codecs/rt5651.c +++ b/sound/soc/codecs/rt5651.c @@ -1770,7 +1770,7 @@ static int rt5651_i2c_probe(struct i2c_client *i2c, regmap_read(rt5651->regmap, RT5651_DEVICE_ID, &ret); if (ret != RT5651_DEVICE_ID_VALUE) { dev_err(&i2c->dev, - "Device with ID register %x is not rt5651\n", ret); + "Device with ID register %#x is not rt5651\n", ret); return -ENODEV; } diff --git a/sound/soc/codecs/rt5670.c b/sound/soc/codecs/rt5670.c index 577251a7b110f19c0ce7194d8948babeb2e496b4..177748af94fc1f552bc020a494ee6908f13b8baa 100644 --- a/sound/soc/codecs/rt5670.c +++ b/sound/soc/codecs/rt5670.c @@ -2864,7 +2864,7 @@ static int rt5670_i2c_probe(struct i2c_client *i2c, regmap_read(rt5670->regmap, RT5670_VENDOR_ID2, &val); if (val != RT5670_DEVICE_ID) { dev_err(&i2c->dev, - "Device with ID register %x is not rt5670/72\n", val); + "Device with ID register %#x is not rt5670/72\n", val); return -ENODEV; }