From patchwork Fri Sep 28 10:13:11 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Seungwon Jeon X-Patchwork-Id: 1518281 Return-Path: X-Original-To: patchwork-linux-mmc@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 0A19CDF283 for ; Fri, 28 Sep 2012 10:13:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757279Ab2I1KNN (ORCPT ); Fri, 28 Sep 2012 06:13:13 -0400 Received: from mailout1.samsung.com ([203.254.224.24]:61982 "EHLO mailout1.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757135Ab2I1KNM (ORCPT ); Fri, 28 Sep 2012 06:13:12 -0400 Received: from epcpsbgm1.samsung.com (epcpsbgm1 [203.254.230.26]) by mailout1.samsung.com (Oracle Communications Messaging Server 7u4-24.01(7.0.4.24.0) 64bit (built Nov 17 2011)) with ESMTP id <0MB200F591PW5VY0@mailout1.samsung.com> for linux-mmc@vger.kernel.org; Fri, 28 Sep 2012 19:13:11 +0900 (KST) X-AuditID: cbfee61a-b7f726d000000ec7-3f-50657837d74d Received: from epmmp1.local.host ( [203.254.227.16]) by epcpsbgm1.samsung.com (EPCPMTA) with SMTP id E3.00.03783.73875605; Fri, 28 Sep 2012 19:13:11 +0900 (KST) Received: from DOTGIHJUN01 ([12.23.118.161]) by mmp1.samsung.com (Oracle Communications Messaging Server 7u4-24.01 (7.0.4.24.0) 64bit (built Nov 17 2011)) with ESMTPA id <0MB2002611PZW2A0@mmp1.samsung.com> for linux-mmc@vger.kernel.org; Fri, 28 Sep 2012 19:13:11 +0900 (KST) From: Seungwon Jeon To: linux-mmc@vger.kernel.org Cc: 'Chris Ball' , 'Will Newton' , 'James Hogan' References: In-reply-to: Subject: mmc: dw_mmc: remove the compiling warning Date: Fri, 28 Sep 2012 19:13:11 +0900 Message-id: <00ff01cd9d61$dd516520$97f42f60$%jun@samsung.com> MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-transfer-encoding: 7bit X-Mailer: Microsoft Office Outlook 12.0 Thread-index: Ac03z3aCvVFr8FaITt2vKVQKst76fw3Ogf7QC4iI1hAADSJjsA== Content-language: ko X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFjrFLMWRmVeSWpSXmKPExsVy+t9jAV3zitQAgyNrZCyO/O9ndGD0+LxJ LoAxissmJTUnsyy1SN8ugStj/567zAW72Cr+nPrP3MC4k7WLkZNDQsBE4vuPbcwQtpjEhXvr 2boYuTiEBBYxSjxramGFcGYxSaze0c4OUsUmoCXx980bsA4RAVmJn38usIHYzALFEpOuL2Ds YuQAauCWWN0cBBLmFOCRWPenE6xcWMBIYu7Zy0wgNouAqsTv92fBjuAVsJXYNe8LM4QtKPFj 8j0WkDHMAuoSU6bkQkyXl9i85i0zSFgCKPzory7EAU4Su/vnMEOUiEjse/GOcQKj0Cwkg2Yh DJqFZNAsJB0LGFlWMYqmFiQXFCel5xrqFSfmFpfmpesl5+duYgSH8DOpHYwrGywOMQpwMCrx 8FqsTAkQYk0sK67MPcQowcGsJMKbUZwaIMSbklhZlVqUH19UmpNafIhRmoNFSZy32QOoWiA9 sSQ1OzW1ILUIJsvEwSnVwKixdFXVpIuqNzfd2iwiEbNkAtfTOZfuTb7PbP7019SNBj7b/uze mNOamlKTduqsp/7hoHsXC71Fg/yFfbd0GbjpGfLePvzyRoqV0l1Bia6ND++fLtnd9ez/Hw6B i41SK39f+BDEJ3H2QPxlrn1qz9eWCj+w+3rrldLulQazjWSf1U0t2+io859biaU4I9FQi7mo OBEAbAHqqV0CAAA= Sender: linux-mmc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-mmc@vger.kernel.org This patch removes the following warning. drivers/mmc/host/dw_mmc.c:1976: warning: passing argument 1 of '_dev_info' from incompatible pointer type Signed-off-by: Seungwon Jeon Acked-by: Will Newton --- 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 a23af77..026cf92 100644 --- a/drivers/mmc/host/dw_mmc.c +++ b/drivers/mmc/host/dw_mmc.c @@ -1973,7 +1973,7 @@ static void dw_mci_init_dma(struct dw_mci *host) /* Determine which DMA interface to use */ #ifdef CONFIG_MMC_DW_IDMAC host->dma_ops = &dw_mci_idmac_ops; - dev_info(&host->dev, "Using internal DMA controller.\n"); + dev_info(host->dev, "Using internal DMA controller.\n"); #endif if (!host->dma_ops)