Changeset 65820 in vbox
- Timestamp:
- Feb 20, 2017 5:41:32 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevPciIch9.cpp
r65708 r65820 49 49 #ifdef IN_RING3 50 50 # include <iprt/mem.h> 51 # include <iprt/uuid.h> 51 52 #endif 52 53 … … 3276 3277 3277 3278 /** 3279 * @interface_method_impl{PDMIBASE,pfnQueryInterface} 3280 */ 3281 static DECLCALLBACK(void *) ich9pcibridgeQueryInterface(PPDMIBASE pInterface, const char *pszIID) 3282 { 3283 PPDMDEVINS pDevIns = RT_FROM_MEMBER(pInterface, PDMDEVINS, IBase); 3284 PDMIBASE_RETURN_INTERFACE(pszIID, PDMIBASE, &pDevIns->IBase); 3285 /* Special access to the PDMPCIDEV structure of a ich9pcibridge instance. */ 3286 PDEVPCIBUS pBus = PDMINS_2_DATA(pDevIns, PDEVPCIBUS); 3287 PDMIBASE_RETURN_INTERFACE(pszIID, PDMIICH9BRIDGEPDMPCIDEV, &pBus->PciDev); 3288 return NULL; 3289 } 3290 3291 3292 /** 3278 3293 * @interface_method_impl{PDMDEVREG,pfnConstruct} 3279 3294 */ … … 3304 3319 N_("Configuration error: Failed to query boolean value \"R0Enabled\"")); 3305 3320 Log(("PCI: fGCEnabled=%RTbool fR0Enabled=%RTbool\n", fGCEnabled, fR0Enabled)); 3321 3322 pDevIns->IBase.pfnQueryInterface = ich9pcibridgeQueryInterface; 3306 3323 3307 3324 /*
Note:
See TracChangeset
for help on using the changeset viewer.