Merge pull request #1221 from hzhuang1/fix_HLE

emmc/dw_mmc: fix the assert on HLE bit
This commit is contained in:
davidcunado-arm 2018-01-16 10:44:30 +00:00 committed by GitHub
commit 1c10d96fc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ static void dw_update_clk(void)
if ((data & CMD_START) == 0)
break;
data = mmio_read_32(dw_params.reg_base + DWMMC_RINTSTS);
assert(data & INT_HLE);
assert((data & INT_HLE) == 0);
}
}