mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-27 13:30:52 +00:00
hw/net/rtl8139: Simplify if/else statement
Rewrite: if (E) { return A; } else { return B; } /* EOF */ } as: if (E) { return A; } return B; } Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Reviewed-by: Cédric Le Goater <clg@kaod.org> Signed-off-by: Jason Wang <jasowang@redhat.com>
This commit is contained in:
parent
0002c3a696
commit
2fa3d2d401
@ -808,11 +808,11 @@ static int rtl8139_can_receive(NetClientState *nc)
|
||||
/* ??? Flow control not implemented in c+ mode.
|
||||
This is a hack to work around slirp deficiencies anyway. */
|
||||
return 1;
|
||||
} else {
|
||||
avail = MOD2(s->RxBufferSize + s->RxBufPtr - s->RxBufAddr,
|
||||
s->RxBufferSize);
|
||||
return (avail == 0 || avail >= 1514 || (s->IntrMask & RxOverflow));
|
||||
}
|
||||
|
||||
avail = MOD2(s->RxBufferSize + s->RxBufPtr - s->RxBufAddr,
|
||||
s->RxBufferSize);
|
||||
return avail == 0 || avail >= 1514 || (s->IntrMask & RxOverflow);
|
||||
}
|
||||
|
||||
static ssize_t rtl8139_do_receive(NetClientState *nc, const uint8_t *buf, size_t size_, int do_interrupt)
|
||||
|
Loading…
Reference in New Issue
Block a user