Changeset 82301 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Nov 30, 2019 5:13:41 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevHDA.cpp
r82300 r82301 5213 5213 * @callback_method_impl{PDMDEVREGR0,pfnConstruct} 5214 5214 */ 5215 static DECLCALLBACK(int) ohciRZConstruct(PPDMDEVINS pDevIns)5215 static DECLCALLBACK(int) hdaRZConstruct(PPDMDEVINS pDevIns) 5216 5216 { 5217 5217 PDMDEV_CHECK_VERSIONS_RETURN(pDevIns); /* this shall come first */ … … 5271 5271 #elif defined(IN_RING0) 5272 5272 /* .pfnEarlyConstruct = */ NULL, 5273 /* .pfnConstruct = */ NULL,5273 /* .pfnConstruct = */ hdaRZConstruct, 5274 5274 /* .pfnDestruct = */ NULL, 5275 5275 /* .pfnFinalDestruct = */ NULL, … … 5284 5284 /* .pfnReserved7 = */ NULL, 5285 5285 #elif defined(IN_RC) 5286 /* .pfnConstruct = */ NULL,5286 /* .pfnConstruct = */ hdaRZConstruct, 5287 5287 /* .pfnReserved0 = */ NULL, 5288 5288 /* .pfnReserved1 = */ NULL,
Note:
See TracChangeset
for help on using the changeset viewer.