Commit 11d1488b authored by Ludovic Desroches's avatar Ludovic Desroches Committed by Chris Ball

mmc: atmel-mci: change atmci_start_command to atmci_send_command

Rename atmci_start_command() to atmci_send_command() which is more
appropriate; atmci_start_command suggests we're sending a start command.
Signed-off-by: default avatarLudovic Desroches <ludovic.desroches@atmel.com>
Signed-off-by: default avatarNicolas Ferre <nicolas.ferre@atmel.com>
Signed-off-by: default avatarChris Ball <cjb@laptop.org>
parent 796211b7
...@@ -565,7 +565,7 @@ static u32 atmci_prepare_command(struct mmc_host *mmc, ...@@ -565,7 +565,7 @@ static u32 atmci_prepare_command(struct mmc_host *mmc,
return cmdr; return cmdr;
} }
static void atmci_start_command(struct atmel_mci *host, static void atmci_send_command(struct atmel_mci *host,
struct mmc_command *cmd, u32 cmd_flags) struct mmc_command *cmd, u32 cmd_flags)
{ {
WARN_ON(host->cmd); WARN_ON(host->cmd);
...@@ -581,7 +581,7 @@ static void atmci_start_command(struct atmel_mci *host, ...@@ -581,7 +581,7 @@ static void atmci_start_command(struct atmel_mci *host,
static void atmci_send_stop_cmd(struct atmel_mci *host, struct mmc_data *data) static void atmci_send_stop_cmd(struct atmel_mci *host, struct mmc_data *data)
{ {
atmci_start_command(host, data->stop, host->stop_cmdr); atmci_send_command(host, data->stop, host->stop_cmdr);
atmci_writel(host, ATMCI_IER, ATMCI_CMDRDY); atmci_writel(host, ATMCI_IER, ATMCI_CMDRDY);
} }
...@@ -1003,7 +1003,7 @@ static void atmci_start_request(struct atmel_mci *host, ...@@ -1003,7 +1003,7 @@ static void atmci_start_request(struct atmel_mci *host,
iflags |= ATMCI_CMDRDY; iflags |= ATMCI_CMDRDY;
cmd = mrq->cmd; cmd = mrq->cmd;
cmdflags = atmci_prepare_command(slot->mmc, cmd); cmdflags = atmci_prepare_command(slot->mmc, cmd);
atmci_start_command(host, cmd, cmdflags); atmci_send_command(host, cmd, cmdflags);
if (data) if (data)
host->submit_data(host, data); host->submit_data(host, data);
......
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