Skip to content

Commit

Permalink
hw/block/pflash_cfi02: Split if() condition
Browse files Browse the repository at this point in the history
Split the if() condition check and arrange the indentation to
ease the review of the next patches. No logical change.

Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Message-Id: <20190627202719.17739-21-philmd@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
  • Loading branch information
philmd committed Jul 2, 2019
1 parent 102f0f7 commit 8a508e7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions hw/block/pflash_cfi02.c
Expand Up @@ -309,8 +309,10 @@ static void pflash_write(void *opaque, hwaddr offset, uint64_t value,

trace_pflash_io_write(offset, width, width << 1, value, pfl->wcycle);
cmd = value;
if (pfl->cmd != 0xA0 && cmd == 0xF0) {
goto reset_flash;
if (pfl->cmd != 0xA0) {
if (cmd == 0xF0) {
goto reset_flash;
}
}
offset &= pfl->chip_len - 1;

Expand Down

0 comments on commit 8a508e7

Please sign in to comment.