summaryrefslogtreecommitdiffstats
path: root/drivers/mmc
diff options
context:
space:
mode:
authorJisheng Zhang <Jisheng.Zhang@synaptics.com>2021-03-11 18:14:32 +0800
committerUlf Hansson <ulf.hansson@linaro.org>2021-03-30 11:42:03 +0200
commitba8734dfbe87b9dd68c9d525c0a3a52e8da42167 (patch)
treed7771dda9a5dc05c8ece1df9a3e46ed64f49aad7 /drivers/mmc
parent3a75283a6b12e60c902f5ca84b8a27010024ce69 (diff)
downloadlinux-stable-ba8734dfbe87b9dd68c9d525c0a3a52e8da42167.tar.gz
linux-stable-ba8734dfbe87b9dd68c9d525c0a3a52e8da42167.tar.bz2
linux-stable-ba8734dfbe87b9dd68c9d525c0a3a52e8da42167.zip
mmc: sdhci-pci: Avoid comma separated statements
Use semicolons. Signed-off-by: Jisheng Zhang <Jisheng.Zhang@synaptics.com> Acked-by: Adrian Hunter <adrian.hunter@intel.com> Link: https://lore.kernel.org/r/20210311181432.6385cd2b@xhacker.debian Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r--drivers/mmc/host/sdhci-pci-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci-pci-core.c b/drivers/mmc/host/sdhci-pci-core.c
index 9552708846ca..62799c1d9c0c 100644
--- a/drivers/mmc/host/sdhci-pci-core.c
+++ b/drivers/mmc/host/sdhci-pci-core.c
@@ -958,7 +958,7 @@ static int glk_emmc_probe_slot(struct sdhci_pci_slot *slot)
slot->host->mmc->caps2 |= MMC_CAP2_CQE;
if (slot->chip->pdev->device != PCI_DEVICE_ID_INTEL_GLK_EMMC) {
- slot->host->mmc->caps2 |= MMC_CAP2_HS400_ES,
+ slot->host->mmc->caps2 |= MMC_CAP2_HS400_ES;
slot->host->mmc_host_ops.hs400_enhanced_strobe =
intel_hs400_enhanced_strobe;
slot->host->mmc->caps2 |= MMC_CAP2_CQE_DCMD;