From: Stefan Weil Date: Tue, 6 Apr 2010 11:44:05 +0000 (+0200) Subject: eepro100: Set configuration bit for standard TCB X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=3dec59a1fb5e1144b655e00cca693240cab0bc70;p=qmiga%2Fqemu.git eepro100: Set configuration bit for standard TCB For some devices, this bit is always set. For the others, it is set by default. Signed-off-by: Stefan Weil Signed-off-by: Michael S. Tsirkin --- diff --git a/hw/eepro100.c b/hw/eepro100.c index e74d3bb108..32e670ec93 100644 --- a/hw/eepro100.c +++ b/hw/eepro100.c @@ -518,6 +518,9 @@ static void e100_pci_reset(EEPRO100State * s, E100PCIDeviceInfo *e100_device) logout("Device %X is undefined!\n", device); } + /* Standard TxCB. */ + s->configuration[6] |= BIT(4); + /* Standard statistical counters. */ s->configuration[6] |= BIT(5);