summaryrefslogtreecommitdiffstats
path: root/drivers/mmc
diff options
context:
space:
mode:
authorzhang songyi <zhang.songyi@zte.com.cn>2022-12-02 10:31:57 +0800
committerUlf Hansson <ulf.hansson@linaro.org>2022-12-07 13:29:14 +0100
commit496182a389627a60d1b12be32d1640b14c678b8b (patch)
tree16657a0a60dc9710278db98bc0607cf3c78c8798 /drivers/mmc
parentfc02e2b52389c8fde02852b2f959c0b45f042bbd (diff)
downloadlinux-496182a389627a60d1b12be32d1640b14c678b8b.tar.bz2
mmc: sdhci: Remove unneeded semicolon
The semicolon after the "}" is unneeded. Signed-off-by: zhang songyi <zhang.songyi@zte.com.cn> Acked-by: Adrian Hunter <adrian.hunter@intel.com> Link: https://lore.kernel.org/r/202212021031575255977@zte.com.cn Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc')
-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;
}