Changeset 35685 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Jan 24, 2011 3:56:51 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 69611
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Makefile.kmk
r35676 r35685 276 276 Bus/MsiCommon.cpp \ 277 277 Bus/MsixCommon.cpp \ 278 Bus/DevPciRaw.cpp\278 $(if $(VBOX_WITH_PCI_PASSTHROUGH),Bus/DevPciRaw.cpp,) \ 279 279 Graphics/DevVGA.cpp \ 280 280 Storage/DevATA.cpp \ … … 541 541 Bus/MsiCommon.cpp \ 542 542 Bus/MsixCommon.cpp \ 543 Bus/DevPciRaw.cpp\543 $(if $(VBOX_WITH_PCI_PASSTHROUGH),Bus/DevPciRaw.cpp,) \ 544 544 Graphics/DevVGA.cpp \ 545 545 Input/DevPS2.cpp \ … … 644 644 Bus/MsiCommon.cpp \ 645 645 Bus/MsixCommon.cpp \ 646 Bus/DevPciRaw.cpp\646 $(if $(VBOX_WITH_PCI_PASSTHROUGH),Bus/DevPciRaw.cpp,) \ 647 647 Graphics/DevVGA.cpp \ 648 648 Input/DevPS2.cpp \ -
trunk/src/VBox/Devices/build/VBoxDD.cpp
r35353 r35685 179 179 return rc; 180 180 #endif 181 182 #ifdef VBOX_WITH_PCI_PASSTHROUGH 181 183 rc = pCallbacks->pfnRegister(pCallbacks, &g_DevicePciRaw); 182 184 if (RT_FAILURE(rc)) 183 185 return rc; 186 #endif 184 187 185 188 return VINF_SUCCESS; … … 349 352 return rc; 350 353 } 351 -
trunk/src/VBox/Devices/build/VBoxDD.h
r35353 r35685 84 84 extern const PDMDEVREG g_DeviceEFI; 85 85 #endif 86 #ifdef VBOX_WITH_PCI_PASSTHROUGH 86 87 extern const PDMDEVREG g_DevicePciRaw; 88 #endif 87 89 88 90 extern const PDMDRVREG g_DrvMouseQueue;
Note:
See TracChangeset
for help on using the changeset viewer.