Changeset 71831 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Apr 11, 2018 5:23:35 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 122038
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevLpc-new.cpp
r71829 r71831 85 85 PDMBOTHCBDECL(int) lpcMmioRead(PPDMDEVINS pDevIns, void *pvUser, RTGCPHYS GCPhysAddr, void *pv, unsigned cb) 86 86 { 87 RT_NOREF(pvUser );87 RT_NOREF(pvUser, cb); 88 88 PLPCSTATE pThis = PDMINS_2_DATA(pDevIns, PLPCSTATE); 89 89 RTGCPHYS32 const offReg = (RTGCPHYS32)GCPhysAddr - pThis->GCPhys32Rcba; … … 117 117 PDMBOTHCBDECL(int) lpcMmioWrite(PPDMDEVINS pDevIns, void *pvUser, RTGCPHYS GCPhysAddr, void const *pv, unsigned cb) 118 118 { 119 RT_NOREF(pvUser );119 RT_NOREF(pvUser, pv); 120 120 PLPCSTATE pThis = PDMINS_2_DATA(pDevIns, PLPCSTATE); 121 121 RTGCPHYS32 const offReg = (RTGCPHYS32)GCPhysAddr - pThis->GCPhys32Rcba;
Note:
See TracChangeset
for help on using the changeset viewer.