From: Mark Cave-Ayland Date: Sun, 30 Jun 2019 17:21:50 +0000 (+0100) Subject: sunhme: fix incorrect constant in sunhme_can_receive() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=076489c043a22fe9be8f3458fbc9012b1fc0606f;p=qemu.git sunhme: fix incorrect constant in sunhme_can_receive() Due to a copy/paste error the wrong register was being checked in order to determine if the NIC is able to receive data. Signed-off-by: Mark Cave-Ayland --- diff --git a/hw/net/sunhme.c b/hw/net/sunhme.c index 6d660a8238..e3a488ee1d 100644 --- a/hw/net/sunhme.c +++ b/hw/net/sunhme.c @@ -649,7 +649,7 @@ static int sunhme_can_receive(NetClientState *nc) { SunHMEState *s = qemu_get_nic_opaque(nc); - return s->macregs[HME_MAC_RXCFG_ENABLE >> 2] & HME_MAC_RXCFG_ENABLE; + return s->macregs[HME_MACI_RXCFG >> 2] & HME_MAC_RXCFG_ENABLE; } static void sunhme_link_status_changed(NetClientState *nc)