summaryrefslogtreecommitdiff
path: root/drivers/media/usb/cx231xx/cx231xx-cards.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@osg.samsung.com>2014-11-02 07:45:56 -0300
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2014-11-03 15:58:30 -0200
commit3b795d01c29c94bf1acd019ee6c7ba6b780406b0 (patch)
tree2ec5529c0b29043d204696ca04c9f6a445ae3d2f /drivers/media/usb/cx231xx/cx231xx-cards.c
parent56d8a3b06816f740d83f8c8c5dfc7774ae86c1f1 (diff)
[media] cx231xx: use dev_foo instead of printk
There are several places at cx231xx that uses printk without any special reason. Change all of them to use dev_foo(). Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/usb/cx231xx/cx231xx-cards.c')
-rw-r--r--drivers/media/usb/cx231xx/cx231xx-cards.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/usb/cx231xx/cx231xx-cards.c b/drivers/media/usb/cx231xx/cx231xx-cards.c
index 2e8741314bce..7156344e7022 100644
--- a/drivers/media/usb/cx231xx/cx231xx-cards.c
+++ b/drivers/media/usb/cx231xx/cx231xx-cards.c
@@ -1216,11 +1216,11 @@ static int cx231xx_init_dev(struct cx231xx *dev, struct usb_device *udev,
cx231xx_add_into_devlist(dev);
if (dev->board.has_417) {
- printk(KERN_INFO "attach 417 %d\n", dev->model);
+ dev_info(&udev->dev, "attach 417 %d\n", dev->model);
if (cx231xx_417_register(dev) < 0) {
- printk(KERN_ERR
+ dev_err(&udev->dev,
"%s() Failed to register 417 on VID_B\n",
- __func__);
+ __func__);
}
}