Changeset 64373 in vbox for trunk/src/VBox/Devices/Serial
- Timestamp:
- Oct 23, 2016 7:03:39 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 111478
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Serial/DevSerial.cpp
r64276 r64373 1051 1051 * @callback_method_impl{FNPCIIOREGIONMAP} 1052 1052 */ 1053 static DECLCALLBACK(int) serialIOPortRegionMap(PP CIDEVICE pPciDev, int iRegion, RTGCPHYS GCPhysAddress,1054 RTGCPHYS cb, PCIADDRESSSPACE enmType)1053 static DECLCALLBACK(int) serialIOPortRegionMap(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, uint32_t iRegion, 1054 RTGCPHYS GCPhysAddress, RTGCPHYS cb, PCIADDRESSSPACE enmType) 1055 1055 { 1056 1056 PDEVSERIAL pThis = RT_FROM_MEMBER(pPciDev, DEVSERIAL, PciDev); … … 1068 1068 * Register our port IO handlers. 1069 1069 */ 1070 rc = PDMDevHlpIOPortRegister(p PciDev->pDevIns, (RTIOPORT)GCPhysAddress, 8, (void *)pThis,1070 rc = PDMDevHlpIOPortRegister(pDevIns, (RTIOPORT)GCPhysAddress, 8, (void *)pThis, 1071 1071 serial_io_write, serial_io_read, NULL, NULL, "SERIAL"); 1072 1072 AssertRC(rc);
Note:
See TracChangeset
for help on using the changeset viewer.