You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
mmc: cavium: Remove redundant pointer check
Remove redundant mmc->card check reported by smatch: drivers/mmc/host/cavium.c:694 cvm_mmc_dma_request() warn: variable dereferenced before check 'mmc->card' (see line 675) Signed-off-by: Jan Glauber <jglauber@cavium.com> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
@@ -691,7 +691,7 @@ static void cvm_mmc_dma_request(struct mmc_host *mmc,
|
||||
* bit mask to check for CRC errors and timeouts only.
|
||||
* Otherwise, use the default power reset value.
|
||||
*/
|
||||
if (mmc->card && mmc_card_sd(mmc->card))
|
||||
if (mmc_card_sd(mmc->card))
|
||||
writeq(0x00b00000ull, host->base + MIO_EMM_STS_MASK(host));
|
||||
else
|
||||
writeq(0xe4390080ull, host->base + MIO_EMM_STS_MASK(host));
|
||||
|
||||
Reference in New Issue
Block a user