- Timestamp:
- Jul 28, 2016 2:41:44 PM (8 years ago)
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevAHCI.cpp
r62506 r62621 988 988 # endif 989 989 990 #elif IN_RING0990 #elif defined(IN_RING0) 991 991 992 992 # ifdef LOG_USE_C99 … … 998 998 # endif 999 999 1000 #elif IN_RC1000 #elif defined(IN_RC) 1001 1001 1002 1002 # ifdef LOG_USE_C99 -
trunk/src/VBox/Devices/USB/DevOHCI.cpp
r62502 r62621 1241 1241 { 1242 1242 ohciPhysRead(pThis, Addr, pau32s, c32s * sizeof(uint32_t)); 1243 #if BYTE_ORDER !=LITTLE_ENDIAN1243 #ifndef RT_LITTLE_ENDIAN 1244 1244 for(int i = 0; i < c32s; i++) 1245 1245 pau32s[i] = RT_H2LE_U32(pau32s[i]); … … 1252 1252 DECLINLINE(void) ohciPutDWords(POHCI pThis, uint32_t Addr, const uint32_t *pau32s, int cu32s) 1253 1253 { 1254 #if BYTE_ORDER ==LITTLE_ENDIAN1254 #ifdef RT_LITTLE_ENDIAN 1255 1255 ohciPhysWrite(pThis, Addr, pau32s, cu32s << 2); 1256 1256 #else
Note:
See TracChangeset
for help on using the changeset viewer.