diff options
author | Yang Li <yang.lee@linux.alibaba.com> | 2022-11-23 10:12:21 +0800 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2022-12-07 13:29:13 +0100 |
commit | 1e8cb505f3d4a3e9c31238a45509a17e688525a0 (patch) | |
tree | b68752bb6206995ae24b5ef5955b4de87913ca10 /drivers/mmc | |
parent | e81bdae440fa7cc7dcbfb4f0fcfafb1f4350bc31 (diff) | |
download | linux-1e8cb505f3d4a3e9c31238a45509a17e688525a0.tar.bz2 |
mmc: Remove unneeded semicolon
./drivers/mmc/host/sunplus-mmc.c:321:2-3: Unneeded semicolon
Link: https://bugzilla.openanolis.cn/show_bug.cgi?id=3238
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Link: https://lore.kernel.org/r/20221123021221.9646-1-yang.lee@linux.alibaba.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/sunplus-mmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/sunplus-mmc.c b/drivers/mmc/host/sunplus-mmc.c index 5c36daf09bfb..db5e0dcdfa7f 100644 --- a/drivers/mmc/host/sunplus-mmc.c +++ b/drivers/mmc/host/sunplus-mmc.c @@ -318,7 +318,7 @@ static void spmmc_set_bus_width(struct spmmc_host *host, int width) value &= ~SPMMC_SD_DATA_WD; value &= ~SPMMC_MMC8_EN; break; - }; + } writel(value, host->base + SPMMC_SD_CONFIG0_REG); } |