diff options
author | Seungwon Jeon <tgih.jun@samsung.com> | 2012-09-28 19:13:11 +0900 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2012-11-07 14:55:29 -0500 |
commit | 00956ea360c3825ac9fd337758e07e193f66d1d9 (patch) | |
tree | 998ce7ecc34296b426c83feb807ae01706d784cc /drivers/mmc | |
parent | d676188e44680c2f2eb114a24b3b32e56165f079 (diff) | |
download | op-kernel-dev-00956ea360c3825ac9fd337758e07e193f66d1d9.zip op-kernel-dev-00956ea360c3825ac9fd337758e07e193f66d1d9.tar.gz |
mmc: dw_mmc: remove _dev_info compile warning
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 <tgih.jun@samsung.com>
Acked-by: Will Newton <will.newton@imgtec.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | 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 c2828f3..250aa18 100644 --- a/drivers/mmc/host/dw_mmc.c +++ b/drivers/mmc/host/dw_mmc.c @@ -1968,7 +1968,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) |