From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Nz7Dt-0000ir-Sp for qemu-devel@nongnu.org; Tue, 06 Apr 2010 07:45:37 -0400 Received: from [140.186.70.92] (port=35221 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nz7Ds-0000iH-Aw for qemu-devel@nongnu.org; Tue, 06 Apr 2010 07:45:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Nz7Dr-0000O8-3b for qemu-devel@nongnu.org; Tue, 06 Apr 2010 07:45:36 -0400 Received: from moutng.kundenserver.de ([212.227.17.9]:56822) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Nz7Dq-0000Ny-O6 for qemu-devel@nongnu.org; Tue, 06 Apr 2010 07:45:35 -0400 From: Stefan Weil Date: Tue, 6 Apr 2010 13:44:05 +0200 Message-Id: <1270554249-24861-6-git-send-email-weil@mail.berlios.de> In-Reply-To: <1270554249-24861-1-git-send-email-weil@mail.berlios.de> References: <1270554249-24861-1-git-send-email-weil@mail.berlios.de> Subject: [Qemu-devel] [PATCH 5/9] eepro100: Set configuration bit for standard TCB List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , 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); -- 1.7.0