diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-22 08:28:30 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-22 08:28:30 -0300 |
commit | 0ac5c38bc31a5a5a1913df3492a45cd0cc97038a (patch) | |
tree | 35f5eb751920aaa21f5063890239374dafe1470e /linux/drivers/media/video/cx231xx/cx231xx-core.c | |
parent | b9f6ffec04bbe099974ad8932652b0fdab70e2a2 (diff) | |
download | mediapointer-dvb-s2-0ac5c38bc31a5a5a1913df3492a45cd0cc97038a.tar.gz mediapointer-dvb-s2-0ac5c38bc31a5a5a1913df3492a45cd0cc97038a.tar.bz2 |
cx231xx: dmesg cleanup
From: Mauro Carvalho Chehab <mchehab@redhat.com>
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 'linux/drivers/media/video/cx231xx/cx231xx-core.c')
-rw-r--r-- | linux/drivers/media/video/cx231xx/cx231xx-core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/video/cx231xx/cx231xx-core.c b/linux/drivers/media/video/cx231xx/cx231xx-core.c index 405819ac1..70478aa8b 100644 --- a/linux/drivers/media/video/cx231xx/cx231xx-core.c +++ b/linux/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); |