[PATCH] mmc: davinci: remove unneeded semicolon
From: trix
Date: Sat Oct 31 2020 - 11:27:22 EST
From: Tom Rix <trix@xxxxxxxxxx>
A semicolon is not needed after a switch statement.
Signed-off-by: Tom Rix <trix@xxxxxxxxxx>
---
drivers/mmc/host/davinci_mmc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mmc/host/davinci_mmc.c b/drivers/mmc/host/davinci_mmc.c
index 90cd179625fc..2a757c88f9d2 100644
--- a/drivers/mmc/host/davinci_mmc.c
+++ b/drivers/mmc/host/davinci_mmc.c
@@ -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)) {
--
2.18.1