diff options
Diffstat (limited to 'hw/pflash_cfi01.c')
-rw-r--r-- | hw/pflash_cfi01.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/pflash_cfi01.c b/hw/pflash_cfi01.c index b3a8a8e3fb..c360179c3c 100644 --- a/hw/pflash_cfi01.c +++ b/hw/pflash_cfi01.c @@ -275,7 +275,7 @@ static void pflash_write (pflash_t *pfl, target_ulong offset, uint32_t value, if (cmd == 0xd0) { /* confirm */ pfl->wcycle = 1; pfl->status |= 0x80; - } if (cmd == 0xff) { /* read array mode */ + } else if (cmd == 0xff) { /* read array mode */ goto reset_flash; } else goto error_flash; |