Skip to content

Commit

Permalink
mmc-atmel: remove linux/mmc/protocol.h dependencies
Browse files Browse the repository at this point in the history
Fix compilation error by removing command decoding from at91_mci.c driver.
Decoding commands in the host driver is the wrong way.

Signed-off-by: Marc Pignat <marc.pignat@hevs.ch>
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
  • Loading branch information
Marc Pignat authored and Pierre Ossman committed Jun 7, 2007
1 parent 5ecd310 commit b6cedb3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions drivers/mmc/host/at91_mci.c
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ static unsigned int at91_mci_send_command(struct at91mci_host *host, struct mmc_
blocks = 0;
}

if (cmd->opcode == MMC_STOP_TRANSMISSION)
if (host->flags & FL_SENT_STOP)
cmdr |= AT91_MCI_TRCMD_STOP;

if (host->bus_mode == MMC_BUSMODE_OPENDRAIN)
Expand Down Expand Up @@ -563,8 +563,7 @@ static void at91mci_completed_command(struct at91mci_host *host)
if (status & (AT91_MCI_RINDE | AT91_MCI_RDIRE | AT91_MCI_RCRCE |
AT91_MCI_RENDE | AT91_MCI_RTOE | AT91_MCI_DCRCE |
AT91_MCI_DTOE | AT91_MCI_OVRE | AT91_MCI_UNRE)) {
if ((status & AT91_MCI_RCRCE) &&
((cmd->opcode == MMC_SEND_OP_COND) || (cmd->opcode == SD_APP_OP_COND))) {
if ((status & AT91_MCI_RCRCE) && !(mmc_resp_type(cmd) & MMC_RSP_CRC)) {
cmd->error = MMC_ERR_NONE;
}
else {
Expand Down

0 comments on commit b6cedb3

Please sign in to comment.