From patchwork Tue Apr 6 11:44:05 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [5/9] eepro100: Set configuration bit for standard TCB Date: Tue, 06 Apr 2010 01:44:05 -0000 From: Stefan Weil X-Patchwork-Id: 49505 Message-Id: <1270554249-24861-6-git-send-email-weil@mail.berlios.de> To: QEMU Developers Cc: "Michael S. Tsirkin" For some devices, this bit is always set. For the others, it is set by default. Signed-off-by: Stefan Weil --- hw/eepro100.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/hw/eepro100.c b/hw/eepro100.c index 52c5888..cedc427 100644 --- a/hw/eepro100.c +++ b/hw/eepro100.c @@ -519,6 +519,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);