aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzhang songyi <[email protected]>2022-12-02 10:31:57 +0800
committerUlf Hansson <[email protected]>2022-12-07 13:29:14 +0100
commit496182a389627a60d1b12be32d1640b14c678b8b (patch)
tree16657a0a60dc9710278db98bc0607cf3c78c8798
parentfc02e2b52389c8fde02852b2f959c0b45f042bbd (diff)
mmc: sdhci: Remove unneeded semicolon
The semicolon after the "}" is unneeded. Signed-off-by: zhang songyi <[email protected]> Acked-by: Adrian Hunter <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Ulf Hansson <[email protected]>
-rw-r--r--drivers/mmc/host/sdhci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c
index aacdd3c51ced..edf052ccb176 100644
--- a/drivers/mmc/host/sdhci.c
+++ b/drivers/mmc/host/sdhci.c
@@ -2289,7 +2289,7 @@ static bool sdhci_timing_has_preset(unsigned char timing)
case MMC_TIMING_UHS_DDR50:
case MMC_TIMING_MMC_DDR52:
return true;
- };
+ }
return false;
}