[media] Staging/media: Use dev_ printks in go7007/wis-uda1342.c
fixed below checkpatch warning. - WARNING: Prefer netdev_dbg(netdev, ... then dev_dbg(dev, ... then pr_debug(... to printk(KERN_DEBUG ... - WARNING: Prefer netdev_err(netdev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... Signed-off-by: YAMANE Toshiaki <yamanetoshi@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
34047bac17
commit
dd442d4d79
1 changed files with 3 additions and 4 deletions
|
@ -47,8 +47,8 @@ static int wis_uda1342_command(struct i2c_client *client,
|
|||
write_reg(client, 0x00, 0x1241); /* select input 1 */
|
||||
break;
|
||||
default:
|
||||
printk(KERN_ERR "wis-uda1342: input %d not supported\n",
|
||||
*inp);
|
||||
dev_err(&client->dev, "input %d not supported\n",
|
||||
*inp);
|
||||
break;
|
||||
}
|
||||
break;
|
||||
|
@ -67,8 +67,7 @@ static int wis_uda1342_probe(struct i2c_client *client,
|
|||
if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_WORD_DATA))
|
||||
return -ENODEV;
|
||||
|
||||
printk(KERN_DEBUG
|
||||
"wis-uda1342: initializing UDA1342 at address %d on %s\n",
|
||||
dev_dbg(&client->dev, "initializing UDA1342 at address %d on %s\n",
|
||||
client->addr, adapter->name);
|
||||
|
||||
write_reg(client, 0x00, 0x8000); /* reset registers */
|
||||
|
|
Loading…
Add table
Reference in a new issue