summaryrefslogtreecommitdiffstats
path: root/ichspi.c
diff options
context:
space:
mode:
Diffstat (limited to 'ichspi.c')
-rw-r--r--ichspi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ichspi.c b/ichspi.c
index 8f8d6e6..4f83908 100644
--- a/ichspi.c
+++ b/ichspi.c
@@ -453,7 +453,7 @@ static int ich7_run_opcode(OPCODE op, uint32_t offset,
/* wait for cycle complete */
timeout = 100 * 1000 * 60; // 60s is a looong timeout.
while (((REGREAD16(ICH7_REG_SPIS) & SPIS_CDS) == 0) && --timeout) {
- myusec_delay(10);
+ programmer_delay(10);
}
if (!timeout) {
printf_debug("timeout\n");
@@ -570,7 +570,7 @@ static int ich9_run_opcode(OPCODE op, uint32_t offset,
/*wait for cycle complete */
timeout = 100 * 1000 * 60; // 60s is a looong timeout.
while (((REGREAD32(ICH9_REG_SSFS) & SSFS_CDS) == 0) && --timeout) {
- myusec_delay(10);
+ programmer_delay(10);
}
if (!timeout) {
printf_debug("timeout\n");
OpenPOWER on IntegriCloud