mmc: davinci: remove unneeded semicolon
authorTom Rix <trix@redhat.com>
Sat, 31 Oct 2020 15:27:08 +0000 (08:27 -0700)
committerUlf Hansson <ulf.hansson@linaro.org>
Mon, 16 Nov 2020 10:59:28 +0000 (11:59 +0100)
A semicolon is not needed after a switch statement.

Signed-off-by: Tom Rix <trix@redhat.com>
Link: https://lore.kernel.org/r/20201031152708.2146690-1-trix@redhat.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/davinci_mmc.c

index 90cd179625fc27be597ab4e4bcc21f2b626a9ead..2a757c88f9d211974d94ba6befb640da5c21e543 100644 (file)
@@ -290,7 +290,7 @@ static void mmc_davinci_start_command(struct mmc_davinci_host *host,
                default:
                        s = ", (R? response)";
                        break;
-               }; s; }));
+               } s; }));
        host->cmd = cmd;
 
        switch (mmc_resp_type(cmd)) {