pcnet: remove dead nested assignment, spotted by clang
Although the value stored to 'addr' is used in the enclosing expression, the value is never actually read from 'addr'. Probably a typo. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
f7e683b8c3
commit
884a0c7677
@ -1608,7 +1608,7 @@ static void pcnet_aprom_writeb(void *opaque, uint32_t addr, uint32_t val)
|
|||||||
static uint32_t pcnet_aprom_readb(void *opaque, uint32_t addr)
|
static uint32_t pcnet_aprom_readb(void *opaque, uint32_t addr)
|
||||||
{
|
{
|
||||||
PCNetState *s = opaque;
|
PCNetState *s = opaque;
|
||||||
uint32_t val = s->prom[addr &= 15];
|
uint32_t val = s->prom[addr & 15];
|
||||||
#ifdef PCNET_DEBUG
|
#ifdef PCNET_DEBUG
|
||||||
printf("pcnet_aprom_readb addr=0x%08x val=0x%02x\n", addr, val);
|
printf("pcnet_aprom_readb addr=0x%08x val=0x%02x\n", addr, val);
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user