Changeset 64387 in vbox for trunk/src/VBox/Devices/Network
- Timestamp:
- Oct 24, 2016 2:06:02 PM (8 years ago)
- Location:
- trunk/src/VBox/Devices/Network
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevE1000.cpp
r64373 r64387 1079 1079 RTIOPORT IOPortBase; 1080 1080 /** EMT: */ 1081 P CIDEVICEpciDevice;1081 PDMPCIDEV pciDevice; 1082 1082 /** EMT: Last time the interrupt was acknowledged. */ 1083 1083 uint64_t u64AckedAt; … … 6104 6104 * @callback_method_impl{FNPCIIOREGIONMAP} 6105 6105 */ 6106 static DECLCALLBACK(int) e1kMap(PPDMDEVINS pDevIns, PP CIDEVICEpPciDev, uint32_t iRegion,6106 static DECLCALLBACK(int) e1kMap(PPDMDEVINS pDevIns, PPDMPCIDEV pPciDev, uint32_t iRegion, 6107 6107 RTGCPHYS GCPhysAddress, RTGCPHYS cb, PCIADDRESSSPACE enmType) 6108 6108 { … … 7422 7422 * @thread EMT 7423 7423 */ 7424 static DECLCALLBACK(void) e1kConfigurePciDev(PP CIDEVICEpPciDev, E1KCHIP eChip)7424 static DECLCALLBACK(void) e1kConfigurePciDev(PPDMPCIDEV pPciDev, E1KCHIP eChip) 7425 7425 { 7426 7426 Assert(eChip < RT_ELEMENTS(g_aChips)); -
trunk/src/VBox/Devices/Network/DevPCNet.cpp
r64373 r64387 247 247 * PCNET state. 248 248 * 249 * @extends P CIDEVICE249 * @extends PDMPCIDEV 250 250 * @implements PDMIBASE 251 251 * @implements PDMINETWORKDOWN … … 255 255 typedef struct PCNETSTATE 256 256 { 257 P CIDEVICEPciDev;257 PDMPCIDEV PciDev; 258 258 259 259 /** Pointer to the device instance - R3. */ … … 3867 3867 * @callback_method_impl{FNPCIIOREGIONMAP, For the PC-NET I/O Ports.} 3868 3868 */ 3869 static DECLCALLBACK(int) pcnetIOPortMap(PPDMDEVINS pDevIns, PP CIDEVICEpPciDev, uint32_t iRegion,3869 static DECLCALLBACK(int) pcnetIOPortMap(PPDMDEVINS pDevIns, PPDMPCIDEV pPciDev, uint32_t iRegion, 3870 3870 RTGCPHYS GCPhysAddress, RTGCPHYS cb, PCIADDRESSSPACE enmType) 3871 3871 { … … 3918 3918 * @callback_method_impl{FNPCIIOREGIONMAP, For the PC-Net MMIO region.} 3919 3919 */ 3920 static DECLCALLBACK(int) pcnetMMIOMap(PPDMDEVINS pDevIns, PP CIDEVICEpPciDev, uint32_t iRegion,3920 static DECLCALLBACK(int) pcnetMMIOMap(PPDMDEVINS pDevIns, PPDMPCIDEV pPciDev, uint32_t iRegion, 3921 3921 RTGCPHYS GCPhysAddress, RTGCPHYS cb, PCIADDRESSSPACE enmType) 3922 3922 { -
trunk/src/VBox/Devices/Network/DevVirtioNet.cpp
r64373 r64387 1778 1778 * @callback_method_impl{FNPCIIOREGIONMAP} 1779 1779 */ 1780 static DECLCALLBACK(int) vnetMap(PPDMDEVINS pDevIns, PP CIDEVICEpPciDev, uint32_t iRegion,1780 static DECLCALLBACK(int) vnetMap(PPDMDEVINS pDevIns, PPDMPCIDEV pPciDev, uint32_t iRegion, 1781 1781 RTGCPHYS GCPhysAddress, RTGCPHYS cb, PCIADDRESSSPACE enmType) 1782 1782 {
Note:
See TracChangeset
for help on using the changeset viewer.