From 3dec59a1fb5e1144b655e00cca693240cab0bc70 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Tue, 6 Apr 2010 13:44:05 +0200 Subject: [PATCH] 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 --- hw/eepro100.c | 3 +++ 1 file changed, 3 insertions(+) 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); -- 2.11.4.GIT