Skip to content

Commit

Permalink
staging: media: lirc: Replaced printk macro with dev_info(dev,....) i…
Browse files Browse the repository at this point in the history
…n lirc_imon.c

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>
  • Loading branch information
Archana kumari authored and Greg Kroah-Hartman committed Oct 27, 2013
1 parent 7ff1b12 commit 5619d97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/media/lirc/lirc_imon.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 5619d97

Please sign in to comment.