Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753955AbbBXSxj (ORCPT ); Tue, 24 Feb 2015 13:53:39 -0500 Received: from resqmta-po-09v.sys.comcast.net ([96.114.154.168]:55881 "EHLO resqmta-po-09v.sys.comcast.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753131AbbBXSxi (ORCPT ); Tue, 24 Feb 2015 13:53:38 -0500 From: Shuah Khan To: mchehab@osg.samsung.com, hans.verkuil@cisco.com, prabhakar.csengg@gmail.com Cc: Shuah Khan , linux-media@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] media: au0828 replace printk KERN_DEBUG with pr_debug Date: Tue, 24 Feb 2015 11:53:34 -0700 Message-Id: <1424804014-7743-1-git-send-email-shuahkh@osg.samsung.com> X-Mailer: git-send-email 2.1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 923 Lines: 29 Replace printk KERN_DEBUG with pr_debug in dprintk macro defined in au0828.h Signed-off-by: Shuah Khan --- drivers/media/usb/au0828/au0828.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/media/usb/au0828/au0828.h b/drivers/media/usb/au0828/au0828.h index eb15187..e3e90ea 100644 --- a/drivers/media/usb/au0828/au0828.h +++ b/drivers/media/usb/au0828/au0828.h @@ -336,7 +336,7 @@ extern struct vb2_ops au0828_vbi_qops; #define dprintk(level, fmt, arg...)\ do { if (au0828_debug & level)\ - printk(KERN_DEBUG pr_fmt(fmt), ## arg);\ + pr_debug(pr_fmt(fmt), ## arg);\ } while (0) /* au0828-input.c */ -- 2.1.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/