summaryrefslogtreecommitdiff
path: root/drivers/mmc/mmc.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mmc/mmc.c')
-rw-r--r--drivers/mmc/mmc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c
index ba14330..cf2a9a6 100644
--- a/drivers/mmc/mmc.c
+++ b/drivers/mmc/mmc.c
@@ -438,8 +438,8 @@ static int mmc_change_freq(struct mmc *mmc)
goto err_rtn;
/* Cards with density > 2GiB are sector addressed */
- if (ext_csd[212] || ext_csd[213] || ext_csd[214] || ext_csd[215] &&
- (mmc->capacity > (2u * 1024 * 1024 * 1024) / 512))
+ if ((ext_csd[212] || ext_csd[213] || ext_csd[214] || ext_csd[215]) &&
+ ((mmc->capacity > (2u * 1024 * 1024 * 1024) / 512)))
mmc->high_capacity = 1;
cardtype = ext_csd[EXT_CSD_CARD_TYPE] & 0xf;