Changeset 62628 in vbox
- Timestamp:
- Jul 28, 2016 3:42:02 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109201
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevPCI.cpp
r62518 r62628 514 514 } 515 515 #else 516 RT_NOREF2(val, len); 516 517 return VINF_IOM_R3_IOPORT_WRITE; 517 518 #endif … … 1157 1158 { 1158 1159 Log(("pciIOPortAddressWrite: Port=%#x u32=%#x cb=%d\n", Port, u32, cb)); 1159 NOREF(pvUser);1160 RT_NOREF2(Port, pvUser); 1160 1161 if (cb == 4) 1161 1162 { … … 1176 1177 PDMBOTHCBDECL(int) pciIOPortAddressRead(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t *pu32, unsigned cb) 1177 1178 { 1178 NOREF(pvUser);1179 RT_NOREF2(Port, pvUser); 1179 1180 if (cb == 4) 1180 1181 { -
trunk/src/VBox/Devices/Network/SrvIntNetR0.cpp
r62511 r62628 1131 1131 break; 1132 1132 } 1133 #else 1134 RT_NOREF2(pIf, pszMsg); 1133 1135 #endif 1134 1136 … … 1476 1478 break; 1477 1479 } 1480 #else 1481 RT_NOREF1(pszMsg); 1478 1482 #endif 1479 1483 pCache->cEntries++; … … 4876 4880 PINTNET pIntNet = (PINTNET)pvUser2; 4877 4881 Log(("intnetR0IfDestruct: pvObj=%p pIf=%p pIntNet=%p hIf=%RX32\n", pvObj, pIf, pIntNet, pIf->hIf)); 4882 RT_NOREF1(pvObj); 4878 4883 4879 4884 /* … … 5896 5901 Log(("intnetR0NetworkDestruct: pvObj=%p pNetwork=%p pIntNet=%p %s\n", pvObj, pNetwork, pIntNet, pNetwork->szName)); 5897 5902 Assert(pNetwork->pIntNet == pIntNet); 5903 RT_NOREF1(pvObj); 5898 5904 5899 5905 /* Take the big create/open/destroy sem. */
Note:
See TracChangeset
for help on using the changeset viewer.