Changeset 14438 in vbox for trunk/src/VBox
- Timestamp:
- Nov 20, 2008 9:39:01 PM (16 years ago)
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Builtins.cpp
r13835 r14438 150 150 if (RT_FAILURE(rc)) 151 151 return rc; 152 152 #ifdef VBOX_WITH_LSILOGIC 153 rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceLsiLogicSCSI); 154 if (VBOX_FAILURE(rc)) 155 return rc; 156 #endif 153 157 154 158 return VINF_SUCCESS; -
trunk/src/VBox/Devices/Builtins.h
r13189 r14438 67 67 #endif 68 68 extern const PDMDEVREG g_DevicePCIBridge; 69 #ifdef VBOX_WITH_LSILOGIC 70 extern const PDMDEVREG g_DeviceLsiLogicSCSI; 71 #endif 69 72 70 73 extern const PDMDRVREG g_DrvMouseQueue; -
trunk/src/VBox/Devices/Makefile.kmk
r14408 r14438 151 151 ifdef VBOX_WITH_SCSI 152 152 VBoxDD_DEFS += VBOX_WITH_SCSI 153 endif 154 ifdef VBOX_WITH_LSILOGIC 155 VBoxDD_DEFS += VBOX_WITH_LSILOGIC 153 156 endif 154 157 VBoxDD_LIBS = \ … … 315 318 endif 316 319 320 ifdef VBOX_WITH_LSILOGIC 321 DevicesR3_DEFS += VBOX_WITH_LSILOGIC 322 DevicesR3_SOURCES += \ 323 Storage/DevLsiLogicSCSI.cpp 324 endif 325 317 326 ifdef VBOX_WITH_USB 318 327 DevicesR3_DEFS += VBOX_WITH_USB IN_USB_R3 … … 405 414 endif 406 415 416 ifdef VBOX_WITH_LSILOGIC 417 VBoxDDGC_DEFS += VBOX_WITH_LSILOGIC 418 VBoxDDGC_SOURCES += \ 419 Storage/DevLsiLogicSCSI.cpp 420 endif 421 407 422 ifeq ($(VBOX_LDR_FMT32),pe) 408 423 VBoxDDGC_LDFLAGS = -Entry:vgaMMIOWrite … … 466 481 VBoxDDR0_SOURCES += \ 467 482 Storage/DevBusLogic.cpp 483 endif 484 485 ifdef VBOX_WITH_LSILOGIC 486 VBoxDDR0_DEFS += VBOX_WITH_LSILOGIC 487 VBoxDDR0_SOURCES += \ 488 Storage/DevLsiLogicSCSI.cpp 468 489 endif 469 490
Note:
See TracChangeset
for help on using the changeset viewer.