Changeset 18437 in vbox for trunk/src/VBox/Devices/Network
- Timestamp:
- Mar 28, 2009 2:35:31 AM (16 years ago)
- Location:
- trunk/src/VBox/Devices/Network
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevE1000Phy.cpp
r15955 r18437 498 498 case MDIO_READ: 499 499 /* Bits are shifted out in MSB to LSB order */ 500 fPin = pPhy->u16Acc & 0x8000;500 fPin = !!(pPhy->u16Acc & 0x8000); 501 501 pPhy->u16Acc <<= 1; 502 502 if (--pPhy->u16Cnt == 0) -
trunk/src/VBox/Devices/Network/DevPCNet.cpp
r18418 r18437 1869 1869 } 1870 1870 size += 4; 1871 pkt_size = size;1871 pkt_size = (int)size; Assert((size_t)pkt_size == size); 1872 1872 1873 1873 #ifdef PCNET_DEBUG_MATCH
Note:
See TracChangeset
for help on using the changeset viewer.