summaryrefslogtreecommitdiff
path: root/drivers/media/video/cx231xx/cx231xx-core.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2009-03-22 08:28:30 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-04-06 21:44:10 -0300
commit4be1ad36683b23355f059c3386f97a4427d1a56a (patch)
tree3d7d82d878f679ed9b8ad62ac9aa1981cbac0b6d /drivers/media/video/cx231xx/cx231xx-core.c
parent38350ba9549b8c981f58ad3d037b335cbae14c43 (diff)
V4L/DVB (11134): cx231xx: dmesg cleanup
Remove some printk's that were needed only during development phase. Also, cleans the printed messages to produce a nicer result. Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx231xx/cx231xx-core.c')
-rw-r--r--drivers/media/video/cx231xx/cx231xx-core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/cx231xx/cx231xx-core.c b/drivers/media/video/cx231xx/cx231xx-core.c
index d0a4d4ddeb8a..0d333e679f70 100644
--- a/drivers/media/video/cx231xx/cx231xx-core.c
+++ b/drivers/media/video/cx231xx/cx231xx-core.c
@@ -125,7 +125,7 @@ int cx231xx_register_extension(struct cx231xx_ops *ops)
if (dev)
ops->init(dev);
}
- cx231xx_info("Cx231xx: Initialized (%s) extension\n", ops->name);
+ printk(KERN_INFO DRIVER_NAME ": %s initialized\n", ops->name);
mutex_unlock(&cx231xx_extension_devlist_lock);
mutex_unlock(&cx231xx_devlist_mutex);
return 0;
@@ -143,7 +143,7 @@ void cx231xx_unregister_extension(struct cx231xx_ops *ops)
}
mutex_lock(&cx231xx_extension_devlist_lock);
- cx231xx_info("Cx231xx: Removed (%s) extension\n", ops->name);
+ printk(KERN_INFO DRIVER_NAME ": %s removed\n", ops->name);
list_del(&ops->next);
mutex_unlock(&cx231xx_extension_devlist_lock);
mutex_unlock(&cx231xx_devlist_mutex);