Commit 08621b18 authored by Adrian Hunter's avatar Adrian Hunter Committed by Ulf Hansson

mmc: sdhci: Rename two ADMA-related functions for consistency

Rename sdhci_set_adma_desc to sdhci_adma_write_desc and
sdhci_show_adma_error to sdhci_adma_show_error so that
all ADMA functions start with sdhci_adma_.
Signed-off-by: default avatarAdrian Hunter <adrian.hunter@intel.com>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent b521cf34
...@@ -454,7 +454,7 @@ static void sdhci_kunmap_atomic(void *buffer, unsigned long *flags) ...@@ -454,7 +454,7 @@ static void sdhci_kunmap_atomic(void *buffer, unsigned long *flags)
local_irq_restore(*flags); local_irq_restore(*flags);
} }
static void sdhci_set_adma_desc(u8 *desc, u32 addr, int len, unsigned cmd) static void sdhci_adma_write_desc(u8 *desc, u32 addr, int len, unsigned cmd)
{ {
__le32 *dataddr = (__le32 __force *)(desc + 4); __le32 *dataddr = (__le32 __force *)(desc + 4);
__le16 *cmdlen = (__le16 __force *)desc; __le16 *cmdlen = (__le16 __force *)desc;
...@@ -532,7 +532,7 @@ static int sdhci_adma_table_pre(struct sdhci_host *host, ...@@ -532,7 +532,7 @@ static int sdhci_adma_table_pre(struct sdhci_host *host,
} }
/* tran, valid */ /* tran, valid */
sdhci_set_adma_desc(desc, align_addr, offset, 0x21); sdhci_adma_write_desc(desc, align_addr, offset, 0x21);
BUG_ON(offset > 65536); BUG_ON(offset > 65536);
...@@ -548,7 +548,7 @@ static int sdhci_adma_table_pre(struct sdhci_host *host, ...@@ -548,7 +548,7 @@ static int sdhci_adma_table_pre(struct sdhci_host *host,
BUG_ON(len > 65536); BUG_ON(len > 65536);
/* tran, valid */ /* tran, valid */
sdhci_set_adma_desc(desc, addr, len, 0x21); sdhci_adma_write_desc(desc, addr, len, 0x21);
desc += 8; desc += 8;
/* /*
...@@ -572,7 +572,7 @@ static int sdhci_adma_table_pre(struct sdhci_host *host, ...@@ -572,7 +572,7 @@ static int sdhci_adma_table_pre(struct sdhci_host *host,
*/ */
/* nop, end, valid */ /* nop, end, valid */
sdhci_set_adma_desc(desc, 0, 0, 0x3); sdhci_adma_write_desc(desc, 0, 0, 0x3);
} }
/* /*
...@@ -2291,7 +2291,7 @@ static void sdhci_cmd_irq(struct sdhci_host *host, u32 intmask, u32 *mask) ...@@ -2291,7 +2291,7 @@ static void sdhci_cmd_irq(struct sdhci_host *host, u32 intmask, u32 *mask)
} }
#ifdef CONFIG_MMC_DEBUG #ifdef CONFIG_MMC_DEBUG
static void sdhci_show_adma_error(struct sdhci_host *host) static void sdhci_adma_show_error(struct sdhci_host *host)
{ {
const char *name = mmc_hostname(host->mmc); const char *name = mmc_hostname(host->mmc);
u8 *desc = host->adma_desc; u8 *desc = host->adma_desc;
...@@ -2316,7 +2316,7 @@ static void sdhci_show_adma_error(struct sdhci_host *host) ...@@ -2316,7 +2316,7 @@ static void sdhci_show_adma_error(struct sdhci_host *host)
} }
} }
#else #else
static void sdhci_show_adma_error(struct sdhci_host *host) { } static void sdhci_adma_show_error(struct sdhci_host *host) { }
#endif #endif
static void sdhci_data_irq(struct sdhci_host *host, u32 intmask) static void sdhci_data_irq(struct sdhci_host *host, u32 intmask)
...@@ -2379,7 +2379,7 @@ static void sdhci_data_irq(struct sdhci_host *host, u32 intmask) ...@@ -2379,7 +2379,7 @@ static void sdhci_data_irq(struct sdhci_host *host, u32 intmask)
host->data->error = -EILSEQ; host->data->error = -EILSEQ;
else if (intmask & SDHCI_INT_ADMA_ERROR) { else if (intmask & SDHCI_INT_ADMA_ERROR) {
pr_err("%s: ADMA error\n", mmc_hostname(host->mmc)); pr_err("%s: ADMA error\n", mmc_hostname(host->mmc));
sdhci_show_adma_error(host); sdhci_adma_show_error(host);
host->data->error = -EIO; host->data->error = -EIO;
if (host->ops->adma_workaround) if (host->ops->adma_workaround)
host->ops->adma_workaround(host, intmask); host->ops->adma_workaround(host, intmask);
......
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