From patchwork Mon Jun 11 10:13:54 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 9184 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 236BC23E4F for ; Mon, 11 Jun 2012 10:25:28 +0000 (UTC) Received: from mail-gh0-f180.google.com (mail-gh0-f180.google.com [209.85.160.180]) by fiordland.canonical.com (Postfix) with ESMTP id E5E50A18590 for ; Mon, 11 Jun 2012 10:25:27 +0000 (UTC) Received: by ghbz12 with SMTP id z12so2541247ghb.11 for ; Mon, 11 Jun 2012 03:25:27 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:in-reply-to:references :x-gm-message-state; bh=rpHs5O+URoe2QzUJLwkyC19sKWyBzDzanFIYjuG32dg=; b=ctgM4jmrKZnfaG5uAD9bs/NkG/0pKjNRJp3YSWpAqfYvO8aFojPGn1liTKipYrWOZr tbQjbtJXn6GrfWnHdp74p3rq70+HaPbopKiD2vzYwmLTSoHqEPfThY8NjQOX0bt2a//f 193DAdsppZuw2vR9vPefY3giHFhqgg2boQiobphcmi0X0s5KGxHqCTaSvKcJIf9JFZnW nsxy4hAH4fQLZF/3e9d4GwWoYNOcG/RuAleomPhb2fAABmsq2SX4pKdfYjpxTpGL0auL gA9lHpD1drrLv7zhGSJXuralQTeIaV/qHzMIc8MPq9lOZCF2OSTI/6Osoxc3AjSgocAk oKmw== Received: by 10.50.87.227 with SMTP id bb3mr5783257igb.57.1339410327237; Mon, 11 Jun 2012 03:25:27 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.231.24.148 with SMTP id v20csp99246ibb; Mon, 11 Jun 2012 03:25:26 -0700 (PDT) Received: by 10.68.222.38 with SMTP id qj6mr24634522pbc.6.1339410326503; Mon, 11 Jun 2012 03:25:26 -0700 (PDT) Received: from mail-pb0-f50.google.com (mail-pb0-f50.google.com [209.85.160.50]) by mx.google.com with ESMTPS id vv4si17114105pbc.102.2012.06.11.03.25.26 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 11 Jun 2012 03:25:26 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.160.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) smtp.mail=sachin.kamat@linaro.org Received: by pbbrr4 with SMTP id rr4so6423889pbb.37 for ; Mon, 11 Jun 2012 03:25:26 -0700 (PDT) Received: by 10.68.233.193 with SMTP id ty1mr2489077pbc.47.1339410326118; Mon, 11 Jun 2012 03:25:26 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id io2sm18030423pbc.24.2012.06.11.03.25.22 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 11 Jun 2012 03:25:25 -0700 (PDT) From: Sachin Kamat To: linux-media@vger.kernel.org Cc: t.stanislaws@samsung.com, k.debski@samsung.com, s.nawrocki@samsung.com, snjw23@gmail.com, kyungmin.park@samsung.com, mchehab@infradead.org, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH 3/3] [media] s5p-fimc: Replace printk with pr_* functions Date: Mon, 11 Jun 2012 15:43:54 +0530 Message-Id: <1339409634-13657-3-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1339409634-13657-1-git-send-email-sachin.kamat@linaro.org> References: <1339409634-13657-1-git-send-email-sachin.kamat@linaro.org> X-Gm-Message-State: ALoCoQntGBYWZUS+dxCaepdTEHlCMPqBab1Nx9lYfP1g7EukmfrvvySH92YDDtQwnxwEga5C/Q1z Replace printk with pr_* functions to silence checkpatch warnings. Signed-off-by: Sachin Kamat --- drivers/media/video/s5p-fimc/fimc-core.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/media/video/s5p-fimc/fimc-core.h b/drivers/media/video/s5p-fimc/fimc-core.h index 95b27ae..c22fb0a 100644 --- a/drivers/media/video/s5p-fimc/fimc-core.h +++ b/drivers/media/video/s5p-fimc/fimc-core.h @@ -28,7 +28,7 @@ #include #define err(fmt, args...) \ - printk(KERN_ERR "%s:%d: " fmt "\n", __func__, __LINE__, ##args) + pr_err("%s:%d: " fmt "\n", __func__, __LINE__, ##args) #define dbg(fmt, args...) \ pr_debug("%s:%d: " fmt "\n", __func__, __LINE__, ##args)