From e7b292193fd135a0a4155ddd07696c19a5b561ad 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 e74d3bb..32e670e 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.7.4