- Timestamp:
- Aug 13, 2008 9:01:32 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/log.h
r10540 r11410 88 88 /** Audio Device group. */ 89 89 LOG_GROUP_DEV_AUDIO, 90 /** BusLogic SCSI host adapter group. */ 91 LOG_GROUP_DEV_BUSLOGIC, 90 92 /** DMA Controller group. */ 91 93 LOG_GROUP_DEV_DMA, … … 337 339 "DEV_APIC", \ 338 340 "DEV_AUDIO", \ 341 "DEV_BUSLOGIC", \ 339 342 "DEV_DMA", \ 340 343 "DEV_E1000", \ -
trunk/src/VBox/Devices/Builtins.cpp
r11266 r11410 142 142 return rc; 143 143 #endif 144 #ifdef VBOX_WITH_BUSLOGIC 145 rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceBusLogic); 146 if (VBOX_FAILURE(rc)) 147 return rc; 148 #endif 144 149 145 150 return VINF_SUCCESS; -
trunk/src/VBox/Devices/Builtins.h
r8155 r11410 63 63 extern const PDMDEVREG g_DeviceAHCI; 64 64 #endif 65 #ifdef VBOX_WITH_BUSLOGIC 66 extern const PDMDEVREG g_DeviceBusLogic; 67 #endif 68 65 69 66 70 extern const PDMDRVREG g_DrvMouseQueue; -
trunk/src/VBox/Devices/Makefile.kmk
r11171 r11410 142 142 ifdef VBOX_WITH_E1000 143 143 VBoxDD_DEFS += VBOX_WITH_E1000 144 endif 145 ifdef VBOX_WITH_BUSLOGIC 146 VBoxDD_DEFS += VBOX_WITH_BUSLOGIC 144 147 endif 145 148 ifndef VBOX_OSE … … 306 309 Storage/DevAHCI.cpp \ 307 310 Storage/ATAController.cpp 311 endif 312 313 ifdef VBOX_WITH_BUSLOGIC 314 DevicesR3_DEFS += VBOX_WITH_BUSLOGIC 315 DevicesR3_SOURCES += \ 316 Storage/DevBusLogic.cpp 308 317 endif 309 318
Note:
See TracChangeset
for help on using the changeset viewer.