From 73270458ec5e9fc818f6da2a6d031360ad0b6dae Mon Sep 17 00:00:00 2001 From: Benjamin Herrenschmidt Date: Mon, 11 Jun 2018 21:15:52 +1000 Subject: Use a separate "started" flag Relying on the command-status is dicey, the GPIO arbitration code needs a more reliable way to know we are actually running Signed-off-by: Benjamin Herrenschmidt --- cf-fsi-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cf-fsi-test.c') diff --git a/cf-fsi-test.c b/cf-fsi-test.c index 5d05051..42bf3a3 100644 --- a/cf-fsi-test.c +++ b/cf-fsi-test.c @@ -755,7 +755,7 @@ int main(int argc, char *argv[]) /* Wait for status register to say command complete */ do { - val = readb(sysreg + SRAM_BASE + CMD_STAT_REG); + val = readl(sysreg + SRAM_BASE + CF_STARTED); } while (val == 0x00); /* Configure echo & send delay */ -- cgit v1.2.1