]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
mmc: at91_mci: cleanup: use MCI_ERRORS
authorAndrew Victor <andrew@sanpeople.com>
Wed, 17 Oct 2007 09:53:40 +0000 (11:53 +0200)
committerPierre Ossman <drzeus@drzeus.cx>
Wed, 17 Oct 2007 19:35:10 +0000 (21:35 +0200)
A small MMC driver cleanup.

Use the defined AT91_MCI_ERRORS in at91_mci_completed_command() instead
of specifying all the error bits individually.

Signed-off-by: Andrew Victor <andrew@sanpeople.com>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
drivers/mmc/host/at91_mci.c

index 6ba98a49612d4c27ce4dc39aaff749cea6295942..7a452c2ad1f9ce2207bc78ba9458b6195796f89d 100644 (file)
@@ -581,9 +581,7 @@ static void at91_mci_completed_command(struct at91mci_host *host)
        pr_debug("Status = %08X [%08X %08X %08X %08X]\n",
                 status, cmd->resp[0], cmd->resp[1], cmd->resp[2], cmd->resp[3]);
 
-       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_ERRORS) {
                if ((status & AT91_MCI_RCRCE) && !(mmc_resp_type(cmd) & MMC_RSP_CRC)) {
                        cmd->error = 0;
                }