staging: media: lirc: lirc_zilog.c: replace custom print macros with dev_* and pr_*
authorAya Mahfouz <mahfouz.saif.elyazal@gmail.com>
Sun, 26 Oct 2014 17:59:43 +0000 (19:59 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 29 Oct 2014 07:36:36 +0000 (15:36 +0800)
commitbe4aa8157c981a8bb9634b886bf1180f97205259
treeb4527c497f80cf0959392ba3b7101d3fa3fd2e32
parent346b0d4a0818fa76bfe0dbe67c6c7ad3e19845e1
staging: media: lirc: lirc_zilog.c: replace custom print macros with dev_* and pr_*

This patch removes the custom printk macros dprintk, zilog_notify,
zilog_error, and zilog_info. All the calls to these macros were
replaced by dev_dbg, dev_notice, dev_err, and dev_info respectively
whenever possible. There were cases in which pr_debug, pr_notice,
pr_err and pr_info were used. It was when the calling function did
not provide an appropiate dev variable.

Applying this patch will trigger the out of memory checkpatch warning
for two lines. It will be fixed in a separate patch.

Signed-off-by: Aya Mahfouz <mahfouz.saif.elyazal@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/media/lirc/lirc_zilog.c