diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2013-01-21 12:50:54 +0000 |
|---|---|---|
| committer | Blue Swirl <blauwirbel@gmail.com> | 2013-01-26 13:20:44 +0000 |
| commit | 3095485029ddbd061aa4f8e26c0437f200975d18 (patch) | |
| tree | 715ae1c448990fd949d92d484c78b96592521879 /hw | |
| parent | be688dfb8ddf7841fb277800977a0a878b68ae42 (diff) | |
| download | focaccia-qemu-3095485029ddbd061aa4f8e26c0437f200975d18.tar.gz focaccia-qemu-3095485029ddbd061aa4f8e26c0437f200975d18.zip | |
hw/pflash_cfi02.c: Mark deliberate fallthrough
Mark the deliberate fallthrough where we treat the case of an attempt to read flash when it is an unknown command state as if it were a normal read. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw')
| -rw-r--r-- | hw/pflash_cfi02.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/pflash_cfi02.c b/hw/pflash_cfi02.c index b4220c1896..44bd4654f0 100644 --- a/hw/pflash_cfi02.c +++ b/hw/pflash_cfi02.c @@ -157,6 +157,7 @@ static uint32_t pflash_read (pflash_t *pfl, hwaddr offset, DPRINTF("%s: unknown command state: %x\n", __func__, pfl->cmd); pfl->wcycle = 0; pfl->cmd = 0; + /* fall through to the read code */ case 0x80: /* We accept reads during second unlock sequence... */ case 0x00: |