Commit 156a6e13 authored by Mark Dykes's avatar Mark Dykes Committed by TrustedFirmware Code Review
Browse files

Merge "fix(drivers/mtd): macronix quad enable bit issue" into integration

parents 80000975 c3327408
......@@ -131,7 +131,7 @@ static int spi_nor_macronix_quad_enable(void)
return ret;
}
if ((sr & SR_QUAD_EN_MX) == 0U) {
if ((sr & SR_QUAD_EN_MX) != 0U) {
return 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