mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
hw/net: Make NetCanReceive() return a boolean
The NetCanReceive handler return whether the device can or can not receive new packets. Make it obvious by returning a boolean type. Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Acked-by: David Gibson <david@gibson.dropbear.id.au> 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
3317db7439
commit
b8c4b67e3e
20 changed files with 45 additions and 48 deletions
|
@ -175,7 +175,7 @@ static const MemoryRegionOps eth_ops = {
|
|||
}
|
||||
};
|
||||
|
||||
static int eth_can_rx(NetClientState *nc)
|
||||
static bool eth_can_rx(NetClientState *nc)
|
||||
{
|
||||
struct xlx_ethlite *s = qemu_get_nic_opaque(nc);
|
||||
unsigned int rxbase = s->rxbuf * (0x800 / 4);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue