We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99eae48 commit e93a977Copy full SHA for e93a977
drivers/mtd/spi-nor/controllers/intel-spi.c
@@ -292,7 +292,7 @@ static int intel_spi_wait_hw_busy(struct intel_spi *ispi)
292
u32 val;
293
294
return readl_poll_timeout(ispi->base + HSFSTS_CTL, val,
295
- !(val & HSFSTS_CTL_SCIP), 40,
+ !(val & HSFSTS_CTL_SCIP), 0,
296
INTEL_SPI_TIMEOUT * 1000);
297
}
298
@@ -301,7 +301,7 @@ static int intel_spi_wait_sw_busy(struct intel_spi *ispi)
301
302
303
return readl_poll_timeout(ispi->sregs + SSFSTS_CTL, val,
304
- !(val & SSFSTS_CTL_SCIP), 40,
+ !(val & SSFSTS_CTL_SCIP), 0,
305
306
307
0 commit comments