[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 14/17] hw/block/pflash_cfi02: Remove unneeded variable assignment
From: |
Laurent Vivier |
Subject: |
[PULL 14/17] hw/block/pflash_cfi02: Remove unneeded variable assignment |
Date: |
Wed, 19 Feb 2020 11:16:09 +0100 |
From: Philippe Mathieu-Daudé <address@hidden>
Fix warning reported by Clang static code analyzer:
CC hw/block/pflash_cfi02.o
hw/block/pflash_cfi02.c:311:5: warning: Value stored to 'ret' is never read
ret = -1;
^ ~~
Reported-by: Clang Static Analyzer
Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
Reviewed-by: Richard Henderson <address@hidden>
Message-Id: <address@hidden>
Signed-off-by: Laurent Vivier <address@hidden>
---
hw/block/pflash_cfi02.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/hw/block/pflash_cfi02.c b/hw/block/pflash_cfi02.c
index 7c4744c020c1..12f18d401a85 100644
--- a/hw/block/pflash_cfi02.c
+++ b/hw/block/pflash_cfi02.c
@@ -308,7 +308,6 @@ static uint64_t pflash_read(void *opaque, hwaddr offset,
unsigned int width)
hwaddr boff;
uint64_t ret;
- ret = -1;
/* Lazy reset to ROMD mode after a certain amount of read accesses */
if (!pfl->rom_mode && pfl->wcycle == 0 &&
++pfl->read_counter > PFLASH_LAZY_ROMD_THRESHOLD) {
--
2.24.1
- [PULL 06/17] hw/m68k/next-cube: Remove superfluous semicolon, (continued)
- [PULL 06/17] hw/m68k/next-cube: Remove superfluous semicolon, Laurent Vivier, 2020/02/19
- [PULL 08/17] hw/vfio/display: Remove superfluous semicolon, Laurent Vivier, 2020/02/19
- [PULL 16/17] hw/nios2:fix leak of fdevice tree blob, Laurent Vivier, 2020/02/19
- [PULL 01/17] mailmap: Add entry for Yu-Chen Lin, Laurent Vivier, 2020/02/19
- [PULL 15/17] hw/net/rocker: Report unimplemented feature with qemu_log_mask(UNIMP), Laurent Vivier, 2020/02/19
- [PULL 10/17] target/i386/whpx: Remove superfluous semicolon, Laurent Vivier, 2020/02/19
- [PULL 17/17] hw/xtensa/xtfpga:fix leak of fdevice tree blob, Laurent Vivier, 2020/02/19
- [PULL 04/17] audio/alsaaudio: Remove superfluous semicolons, Laurent Vivier, 2020/02/19
- [PULL 11/17] tests/qtest/libqos/qgraph: Remove superfluous semicolons, Laurent Vivier, 2020/02/19
- [PULL 13/17] hw/display/qxl: Remove unneeded variable assignment, Laurent Vivier, 2020/02/19
- [PULL 14/17] hw/block/pflash_cfi02: Remove unneeded variable assignment,
Laurent Vivier <=
- [PULL 12/17] contrib/rdmacm-mux: Remove superfluous semicolon, Laurent Vivier, 2020/02/19
- [PULL 09/17] ui/input-barrier: Remove superfluous semicolon, Laurent Vivier, 2020/02/19
- Re: [PULL 00/17] Trivial branch patches, Peter Maydell, 2020/02/20