Commit df48dd02 authored by Tony Lindgren's avatar Tony Lindgren Committed by Pierre Ossman

mmc: Fix omap compile by replacing dev_name with dma_dev_name

This patch fixes error:

drivers/mmc/host/omap.c: In function 'mmc_omap_get_dma_channel':
drivers/mmc/host/omap.c:1038: error: called object 'dev_name' is not a function

Commit 06916639 adds a function
called dev_name. This will cause a name conflict as dev_dbg calls
dev_name(((host->mmc)->parent)).

This same issue should not affect other drivers as they don't seem
to use dev_name with dev_dbg.

Thanks to Paul Walmsley <paul@pwsan.com> for figuring this one out.

Cc: Paul Walmsley <paul@pwsan.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
Signed-off-by: default avatarPierre Ossman <drzeus@drzeus.cx>
parent 28a4acb4
...@@ -1003,7 +1003,7 @@ static void mmc_omap_dma_cb(int lch, u16 ch_status, void *data) ...@@ -1003,7 +1003,7 @@ static void mmc_omap_dma_cb(int lch, u16 ch_status, void *data)
static int mmc_omap_get_dma_channel(struct mmc_omap_host *host, struct mmc_data *data) static int mmc_omap_get_dma_channel(struct mmc_omap_host *host, struct mmc_data *data)
{ {
const char *dev_name; const char *dma_dev_name;
int sync_dev, dma_ch, is_read, r; int sync_dev, dma_ch, is_read, r;
is_read = !(data->flags & MMC_DATA_WRITE); is_read = !(data->flags & MMC_DATA_WRITE);
...@@ -1018,21 +1018,21 @@ static int mmc_omap_get_dma_channel(struct mmc_omap_host *host, struct mmc_data ...@@ -1018,21 +1018,21 @@ static int mmc_omap_get_dma_channel(struct mmc_omap_host *host, struct mmc_data
if (is_read) { if (is_read) {
if (host->id == 1) { if (host->id == 1) {
sync_dev = OMAP_DMA_MMC_RX; sync_dev = OMAP_DMA_MMC_RX;
dev_name = "MMC1 read"; dma_dev_name = "MMC1 read";
} else { } else {
sync_dev = OMAP_DMA_MMC2_RX; sync_dev = OMAP_DMA_MMC2_RX;
dev_name = "MMC2 read"; dma_dev_name = "MMC2 read";
} }
} else { } else {
if (host->id == 1) { if (host->id == 1) {
sync_dev = OMAP_DMA_MMC_TX; sync_dev = OMAP_DMA_MMC_TX;
dev_name = "MMC1 write"; dma_dev_name = "MMC1 write";
} else { } else {
sync_dev = OMAP_DMA_MMC2_TX; sync_dev = OMAP_DMA_MMC2_TX;
dev_name = "MMC2 write"; dma_dev_name = "MMC2 write";
} }
} }
r = omap_request_dma(sync_dev, dev_name, mmc_omap_dma_cb, r = omap_request_dma(sync_dev, dma_dev_name, mmc_omap_dma_cb,
host, &dma_ch); host, &dma_ch);
if (r != 0) { if (r != 0) {
dev_dbg(mmc_dev(host->mmc), "omap_request_dma() failed with %d\n", r); dev_dbg(mmc_dev(host->mmc), "omap_request_dma() failed with %d\n", r);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment