From patchwork Thu Mar 28 06:15:21 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 15716 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 5DE5623E3E for ; Thu, 28 Mar 2013 06:26:50 +0000 (UTC) Received: from mail-vc0-f181.google.com (mail-vc0-f181.google.com [209.85.220.181]) by fiordland.canonical.com (Postfix) with ESMTP id 17E47A18646 for ; Thu, 28 Mar 2013 06:26:50 +0000 (UTC) Received: by mail-vc0-f181.google.com with SMTP id hv10so7215543vcb.40 for ; Wed, 27 Mar 2013 23:26:49 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:x-forwarded-to:x-forwarded-for:delivered-to:x-received :received-spf:x-received:from:to:cc:subject:date:message-id:x-mailer :x-gm-message-state; bh=FWUPLTBZCg0ifpE6SyktiUJJqbTxgbXNcKUMrGuNLBw=; b=bLdmsNUyA3KqbQyugqdN8oMzGro+CL8YLTAMsxRQea+P3cRq71xIz3PE66/tCI+Otn Yc3gcb8PT68BaHYm7Q8oHw+06Hq53nwIqtUhmLMXuyyp0w+go9fydaplI9Qbl951r0TM tAhXLQAuIT99SZ8p/7r6ePymcoD/5etb04O6lIVDt4X26eQKzphZdCeAW6TTzzzIaB7q 38w9qJd0fVmmiyPLPby5X24l3D9vnMRXt1aLLnugqqqN2pWTxJIIynyjdc7/sHMHg5lI WJtdc6GAsTgQcAFs/rXeaH1vdD5W5bbmtEPq6axSCheLfu0emn/pbbI8tte/IYPJyVMJ QrBQ== X-Received: by 10.220.225.200 with SMTP id it8mr25936503vcb.39.1364452009581; Wed, 27 Mar 2013 23:26:49 -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.59.4.204 with SMTP id cg12csp1152ved; Wed, 27 Mar 2013 23:26:48 -0700 (PDT) X-Received: by 10.68.253.230 with SMTP id ad6mr33772319pbd.116.1364452007663; Wed, 27 Mar 2013 23:26:47 -0700 (PDT) Received: from mail-pd0-f180.google.com (mail-pd0-f180.google.com [209.85.192.180]) by mx.google.com with ESMTPS id ul7si24953229pbc.268.2013.03.27.23.26.47 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 27 Mar 2013 23:26:47 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.192.180 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.192.180; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.192.180 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) smtp.mail=sachin.kamat@linaro.org Received: by mail-pd0-f180.google.com with SMTP id g10so3937627pdj.25 for ; Wed, 27 Mar 2013 23:26:47 -0700 (PDT) X-Received: by 10.66.88.105 with SMTP id bf9mr4454205pab.175.1364452007085; Wed, 27 Mar 2013 23:26:47 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id i10sm24354700pbd.1.2013.03.27.23.26.44 (version=TLSv1 cipher=RC4-SHA bits=128/128); Wed, 27 Mar 2013 23:26:46 -0700 (PDT) From: Sachin Kamat To: linux-mmc@vger.kernel.org Cc: tgih.jun@samsung.com, jh80.chung@samsung.com, cjb@laptop.org, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH Resend 2/2] mmc: dw_mmc: Use pr_info instead of printk Date: Thu, 28 Mar 2013 11:45:21 +0530 Message-Id: <1364451321-4383-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 X-Gm-Message-State: ALoCoQnipv68IXLZcUgpSDjiyaW/o6NEwRhbrseexktvP3pwcoPPsqxRiLx12AyuZuX1MaW1L06j pr_info(... is preferred to printk(KERN_INFO ... Signed-off-by: Sachin Kamat Acked-by: Jaehoon Chung Acked-by: Seungwon Jeon --- drivers/mmc/host/dw_mmc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/mmc/host/dw_mmc.c b/drivers/mmc/host/dw_mmc.c index 1ba09d0..870d311 100644 --- a/drivers/mmc/host/dw_mmc.c +++ b/drivers/mmc/host/dw_mmc.c @@ -2509,7 +2509,7 @@ EXPORT_SYMBOL(dw_mci_resume); static int __init dw_mci_init(void) { - printk(KERN_INFO "Synopsys Designware Multimedia Card Interface Driver"); + pr_info("Synopsys Designware Multimedia Card Interface Driver\n"); return 0; }