summaryrefslogtreecommitdiff
path: root/hw/block
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2017-10-03 11:57:24 +0200
committerKevin Wolf <kwolf@redhat.com>2017-10-06 16:28:58 +0200
commitdbfa934106d22402d809d039e773b50ab1885477 (patch)
tree924ab49c9362633250f6b2392ee7e972d1c68818 /hw/block
parentca759622441da1d19107efaa62d9d63fb83ebb79 (diff)
downloadqemu-dbfa934106d22402d809d039e773b50ab1885477.tar.gz
hw/block/onenand: Remove dead code block
The condition of the for-loop makes sure that b is always smaller than s->blocks, so the "if (b >= s->blocks)" statement is completely superfluous here. Buglink: https://bugs.launchpad.net/qemu/+bug/1715007 Signed-off-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Laurent Vivier <lvivier@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'hw/block')
-rw-r--r--hw/block/onenand.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/hw/block/onenand.c b/hw/block/onenand.c
index 30e40f3914..de65c9ebb9 100644
--- a/hw/block/onenand.c
+++ b/hw/block/onenand.c
@@ -520,10 +520,6 @@ static void onenand_command(OneNANDState *s)
s->intstatus |= ONEN_INT;
for (b = 0; b < s->blocks; b ++) {
- if (b >= s->blocks) {
- s->status |= ONEN_ERR_CMD;
- break;
- }
if (s->blockwp[b] == ONEN_LOCK_LOCKTIGHTEN)
break;