diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2010-04-25 19:31:06 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-04-25 19:31:06 +0000 |
commit | 22ed1d34789b184aaaa28c1e4620ce4467744cec (patch) | |
tree | 1402cbaab355bffa77a60e37c74ef54c3032b45d /hw/omap1.c | |
parent | 7f5b7d3e2c19c0aa52dcac0a10d473c7fd142450 (diff) | |
download | qemu-22ed1d34789b184aaaa28c1e4620ce4467744cec.tar.gz qemu-22ed1d34789b184aaaa28c1e4620ce4467744cec.tar.bz2 qemu-22ed1d34789b184aaaa28c1e4620ce4467744cec.zip |
arm: remove dead assignments, spotted by clang analyzer
Value stored is never read.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/omap1.c')
-rw-r--r-- | hw/omap1.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/omap1.c b/hw/omap1.c index a554d905f2..8649dbdab3 100644 --- a/hw/omap1.c +++ b/hw/omap1.c @@ -2348,7 +2348,6 @@ static void omap_clkm_write(void *opaque, target_phys_addr_t addr, return; case 0x0c: /* ARM_EWUPCT */ - diff = s->clkm.arm_ewupct ^ value; s->clkm.arm_ewupct = value & 0x003f; return; |