Commit e52f5291 authored by Haojian Zhuang's avatar Haojian Zhuang
Browse files

emmc/dw_mmc: fix the assert on HLE bit


When check HLE bit in interrupt register, it should check whether
HLE bit is set, not clear.
Signed-off-by: default avatarHaojian Zhuang <haojian.zhuang@linaro.org>
Showing with 1 addition and 1 deletion
+1 -1
......@@ -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);
}
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment