Changeset 7044 in vbox for trunk/src/VBox/Devices/Network
- Timestamp:
- Feb 20, 2008 3:23:26 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevPCNet.cpp
r6833 r7044 166 166 167 167 /** Transmit signaller */ 168 R3R0PTRTYPE(PPDMQUEUE) pXmitQueueHC; 168 169 GCPTRTYPE(PPDMQUEUE) pXmitQueueGC; 169 R3R0PTRTYPE(PPDMQUEUE) pXmitQueueHC;170 170 171 171 /** Receive signaller */ 172 GCPTRTYPE(PPDMQUEUE) pCanRxQueueGC; 172 173 R3R0PTRTYPE(PPDMQUEUE) pCanRxQueueHC; 173 GCPTRTYPE(PPDMQUEUE) pCanRxQueueGC; 174 /** Pointer to the device instance. */ 175 R3R0PTRTYPE(PPDMDEVINS) pDevInsHC; 174 176 /** Pointer to the device instance. */ 175 177 GCPTRTYPE(PPDMDEVINS) pDevInsGC; 176 /** Pointer to the device instance. */177 R 3R0PTRTYPE(PPDMDEVINS) pDevInsHC;178 /** Alignment padding. */ 179 RTGCPTR GCPtrAlignment0; 178 180 /** Restore timer. 179 181 * This is used to disconnect and reconnect the link after a restore. */ … … 208 210 PDMMAC MacConfigured; 209 211 212 #if HC_ARCH_BITS == 64 213 uint32_t u32Alignment0; /** Alignment padding. */ 214 #endif 210 215 /** The LED. */ 211 216 PDMLED Led; … … 2752 2757 case 2: 2753 2758 /* PHY identifier 1. */ 2754 val = 0x22; /* Am79C874 PHY */ 2759 val = 0x22; /* Am79C874 PHY */ 2755 2760 break; 2756 2761 2757 2762 case 3: 2758 2763 /* PHY identifier 2. */ 2759 val = 0x561b; /* Am79C874 PHY */ 2764 val = 0x561b; /* Am79C874 PHY */ 2760 2765 break; 2761 2766 … … 2765 2770 #if 0 2766 2771 // Advertising flow control is a) not the default, and b) confuses 2767 // the link speed detection routine in Windows PCnet driver 2772 // the link speed detection routine in Windows PCnet driver 2768 2773 | 0x0400 /* Try flow control. */ 2769 2774 #endif
Note:
See TracChangeset
for help on using the changeset viewer.