Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 270231
b: refs/heads/master
c: 11d1488
h: refs/heads/master
i:
  270229: 6bf7076
  270227: 0208f7b
  270223: 715d449
v: v3
  • Loading branch information
Ludovic Desroches authored and Chris Ball committed Oct 26, 2011
1 parent 5bfd13e commit 3c79cb5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 796211b7953bd1036670359f31cd97f309322107
refs/heads/master: 11d1488b01b803254842b756ff7662085b37970e
6 changes: 3 additions & 3 deletions trunk/drivers/mmc/host/atmel-mci.c
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ static u32 atmci_prepare_command(struct mmc_host *mmc,
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)
{
WARN_ON(host->cmd);
Expand All @@ -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)
{
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);
}

Expand Down Expand Up @@ -1003,7 +1003,7 @@ static void atmci_start_request(struct atmel_mci *host,
iflags |= ATMCI_CMDRDY;
cmd = mrq->cmd;
cmdflags = atmci_prepare_command(slot->mmc, cmd);
atmci_start_command(host, cmd, cmdflags);
atmci_send_command(host, cmd, cmdflags);

if (data)
host->submit_data(host, data);
Expand Down

0 comments on commit 3c79cb5

Please sign in to comment.