summaryrefslogtreecommitdiffstats
path: root/hw/timer
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé2020-04-22 15:31:51 +0200
committerLaurent Vivier2020-05-04 14:43:24 +0200
commitdd1545a3f03f6e821a4ef588acbd99fb4328bcc2 (patch)
treeb0d705fe0053f87582c3364304ee4a4d60cd8d81 /hw/timer
parenthw/gpio/aspeed_gpio: Remove dead assignment (diff)
downloadqemu-dd1545a3f03f6e821a4ef588acbd99fb4328bcc2.tar.gz
qemu-dd1545a3f03f6e821a4ef588acbd99fb4328bcc2.tar.xz
qemu-dd1545a3f03f6e821a4ef588acbd99fb4328bcc2.zip
hw/timer/stm32f2xx_timer: Remove dead assignment
Fix warning reported by Clang static code analyzer: CC hw/timer/stm32f2xx_timer.o hw/timer/stm32f2xx_timer.c:225:9: warning: Value stored to 'value' is never read value = timer_val; ^ ~~~~~~~~~ Reported-by: Clang Static Analyzer Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20200422133152.16770-9-philmd@redhat.com> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'hw/timer')
-rw-r--r--hw/timer/stm32f2xx_timer.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/timer/stm32f2xx_timer.c b/hw/timer/stm32f2xx_timer.c
index 06ec8a02c2..ba8694dcd3 100644
--- a/hw/timer/stm32f2xx_timer.c
+++ b/hw/timer/stm32f2xx_timer.c
@@ -222,7 +222,6 @@ static void stm32f2xx_timer_write(void *opaque, hwaddr offset,
case TIM_PSC:
timer_val = stm32f2xx_ns_to_ticks(s, now) - s->tick_offset;
s->tim_psc = value & 0xFFFF;
- value = timer_val;
break;
case TIM_CNT:
timer_val = value;