staging: media: lirc: Replaced printk macro with dev_info(dev,....) in lirc_imon.c
authorArchana kumari <archanakumari959@gmail.com>
Wed, 23 Oct 2013 19:47:41 +0000 (01:17 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 27 Oct 2013 13:42:00 +0000 (06:42 -0700)
This patch replaces printk macro with dev_info(dev,....)
in lirc_imon.c

Signed-off-by: Archana kumari <archanakumari959@gmail.com>
Reviewed-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/media/lirc/lirc_imon.c

index 4afa7da11f375cfbbf9e08f0df0676dfae62302d..ab2ae115b524eac74a54759bc471d1c6dff2c2aa 100644 (file)
@@ -625,7 +625,7 @@ static void imon_incoming_packet(struct imon_context *context,
        }
 
        if (debug) {
-               printk(KERN_INFO "raw packet: ");
+               dev_info(dev, "raw packet: ");
                for (i = 0; i < len; ++i)
                        printk("%02x ", buf[i]);
                printk("\n");
This page took 0.024773 seconds and 5 git commands to generate.