Changeset 41816 in vbox
- Timestamp:
- Jun 18, 2012 2:07:17 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevPCI.cpp
r41811 r41816 244 244 /** 245 245 * Reads data via bus mastering, if enabled. If no bus mastering is available, 246 * this function does nothing and returns VINF_ SUCCESS.246 * this function does nothing and returns VINF_NOT_SUPPORTED. 247 247 * 248 248 * @return IPRT status code. … … 260 260 PCIDevGetVendorId(pPciDev), PCIDevGetDeviceId(pPciDev), pvBuf, cbRead)); 261 261 #endif 262 return VINF_ SUCCESS;262 return VINF_NOT_SUPPORTED; 263 263 } 264 264 … … 268 268 /** 269 269 * Writes data via bus mastering, if enabled. If no bus mastering is available, 270 * this function does nothing and returns VINF_ SUCCESS.270 * this function does nothing and returns VINF_NOT_SUPPORTED. 271 271 * 272 272 * @return IPRT status code. … … 284 284 PCIDevGetVendorId(pPciDev), PCIDevGetDeviceId(pPciDev), pvBuf, cbWrite)); 285 285 #endif 286 return VINF_ SUCCESS;286 return VINF_NOT_SUPPORTED; 287 287 } 288 288
Note:
See TracChangeset
for help on using the changeset viewer.