From: Stefan Weil Date: Tue, 6 Apr 2010 11:44:05 +0000 (+0200) Subject: eepro100: Set configuration bit for standard TCB X-Git-Tag: TizenStudio_2.0_p2.3~5093^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e7b292193fd135a0a4155ddd07696c19a5b561ad;p=sdk%2Femulator%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 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);