]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
mmc: mmci: Remove redundant check of status for DATA irq
authorUlf Hansson <ulf.hansson@linaro.org>
Thu, 12 Jun 2014 12:42:23 +0000 (14:42 +0200)
committerUlf Hansson <ulf.hansson@linaro.org>
Mon, 11 Aug 2014 08:16:16 +0000 (10:16 +0200)
We don't need to verify the content of the status register twice, while
we are about to handle a DATA irq. Instead let's leave all verification
to be handled by mmci_data_irq().

Cc: Peter Maydell <peter.maydell@linaro.org>
Cc: John Stultz <john.stultz@linaro.org>
Cc: Russell King <linux@arm.linux.org.uk>
Tested-by: Kees Cook <keescook@chromium.org>
Tested-by: John Stultz <john.stultz@linaro.org>
Cc: <stable@vger.kernel.org> # v3.15+
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/mmci.c

index 6483c5cc67355ef0fed4bd2ca79ba2d7e15fa64a..a723ed2883f90cc9bd6c7811419595960a787c0f 100644 (file)
@@ -888,6 +888,10 @@ static void
 mmci_data_irq(struct mmci_host *host, struct mmc_data *data,
              unsigned int status)
 {
+       /* Make sure we have data to handle */
+       if (!data)
+               return;
+
        /* First check for errors */
        if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
                      MCI_TXUNDERRUN|MCI_RXOVERRUN)) {
@@ -1206,7 +1210,6 @@ static irqreturn_t mmci_irq(int irq, void *dev_id)
 
        do {
                struct mmc_command *cmd;
-               struct mmc_data *data;
 
                status = readl(host->base + MMCISTATUS);
 
@@ -1232,11 +1235,7 @@ static irqreturn_t mmci_irq(int irq, void *dev_id)
                        MCI_CMDSENT|MCI_CMDRESPEND) && cmd)
                        mmci_cmd_irq(host, cmd, status);
 
-               data = host->data;
-               if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
-                             MCI_TXUNDERRUN|MCI_RXOVERRUN|MCI_DATAEND|
-                             MCI_DATABLOCKEND) && data)
-                       mmci_data_irq(host, data, status);
+               mmci_data_irq(host, host->data, status);
 
                /* Don't poll for busy completion in irq context. */
                if (host->busy_status)