Commit dbfa9341 authored by Thomas Huth's avatar Thomas Huth Committed by Kevin Wolf
Browse files

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: default avatarThomas Huth <thuth@redhat.com>
Reviewed-by: default avatarLaurent Vivier <lvivier@redhat.com>
Signed-off-by: default avatarKevin Wolf <kwolf@redhat.com>
parent ca759622
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -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;