[media] Staging/media: Use dev_ printks in go7007/wis-uda1342.c
authorYAMANE Toshiaki <yamanetoshi@gmail.com>
Tue, 6 Nov 2012 18:39:54 +0000 (15:39 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Fri, 21 Dec 2012 20:53:55 +0000 (18:53 -0200)
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>
drivers/staging/media/go7007/wis-uda1342.c

index 05ac798..582ea12 100644 (file)
@@ -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 */