diff options
author | Seungwon Jeon <tgih.jun@samsung.com> | 2012-09-28 06:13:11 -0400 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2012-11-07 14:55:29 -0500 |
commit | 00956ea360c3825ac9fd337758e07e193f66d1d9 (patch) | |
tree | 998ce7ecc34296b426c83feb807ae01706d784cc /drivers | |
parent | d676188e44680c2f2eb114a24b3b32e56165f079 (diff) |
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')
-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 c2828f35c3b8..250aa1836591 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) | |||
1968 | /* Determine which DMA interface to use */ | 1968 | /* Determine which DMA interface to use */ |
1969 | #ifdef CONFIG_MMC_DW_IDMAC | 1969 | #ifdef CONFIG_MMC_DW_IDMAC |
1970 | host->dma_ops = &dw_mci_idmac_ops; | 1970 | host->dma_ops = &dw_mci_idmac_ops; |
1971 | dev_info(&host->dev, "Using internal DMA controller.\n"); | 1971 | dev_info(host->dev, "Using internal DMA controller.\n"); |
1972 | #endif | 1972 | #endif |
1973 | 1973 | ||
1974 | if (!host->dma_ops) | 1974 | if (!host->dma_ops) |