Changeset 43472 in vbox for trunk/src/VBox/Devices/Storage
- Timestamp:
- Sep 29, 2012 7:54:30 PM (12 years ago)
- Location:
- trunk/src/VBox/Devices/Storage
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevAHCI.cpp
r43399 r43472 8190 8190 /* fFlags */ 8191 8191 PDM_DEVREG_FLAGS_DEFAULT_BITS | PDM_DEVREG_FLAGS_RC | PDM_DEVREG_FLAGS_R0 | 8192 PDM_DEVREG_FLAGS_FIRST_SUSPEND_NOTIFICATION | PDM_DEVREG_FLAGS_FIRST_POWEROFF_NOTIFICATION, 8192 PDM_DEVREG_FLAGS_FIRST_SUSPEND_NOTIFICATION | PDM_DEVREG_FLAGS_FIRST_POWEROFF_NOTIFICATION | 8193 PDM_DEVREG_FLAGS_FIRST_RESET_NOTIFICATION, 8193 8194 /* fClass */ 8194 8195 PDM_DEVREG_CLASS_STORAGE, -
trunk/src/VBox/Devices/Storage/DevATA.cpp
r42996 r43472 5 5 6 6 /* 7 * Copyright (C) 2006-201 1Oracle Corporation7 * Copyright (C) 2006-2012 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 7701 7701 /* fFlags */ 7702 7702 PDM_DEVREG_FLAGS_DEFAULT_BITS | PDM_DEVREG_FLAGS_RC | PDM_DEVREG_FLAGS_R0 | 7703 PDM_DEVREG_FLAGS_FIRST_SUSPEND_NOTIFICATION | PDM_DEVREG_FLAGS_FIRST_POWEROFF_NOTIFICATION, 7703 PDM_DEVREG_FLAGS_FIRST_SUSPEND_NOTIFICATION | PDM_DEVREG_FLAGS_FIRST_POWEROFF_NOTIFICATION | 7704 PDM_DEVREG_FLAGS_FIRST_RESET_NOTIFICATION, 7704 7705 /* fClass */ 7705 7706 PDM_DEVREG_CLASS_STORAGE, -
trunk/src/VBox/Devices/Storage/DevBusLogic.cpp
r43337 r43472 5 5 6 6 /* 7 * Copyright (C) 2006-20 09Oracle Corporation7 * Copyright (C) 2006-2012 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 800 800 * @returns nothing. 801 801 * @param pBusLogic Pointer to the BusLogic device instance. 802 * @param fSuppressIrq Flag to suppress IRQ generation regardless of fIRQEnabled 803 * @param uFlag Type of interrupt being generated. 802 * @param fSuppressIrq Flag to suppress IRQ generation regardless of fIRQEnabled 803 * @param uFlag Type of interrupt being generated. 804 804 */ 805 805 static void buslogicSetInterrupt(PBUSLOGIC pBusLogic, bool fSuppressIrq, uint8_t uIrqType) … … 1406 1406 case BUSLOGICCOMMAND_SET_ADAPTER_OPTIONS: 1407 1407 /* The parameter list length is determined by the first byte of the command buffer. */ 1408 if (pBusLogic->iParameter == 1) 1408 if (pBusLogic->iParameter == 1) 1409 1409 { 1410 1410 /* First pass - set the number of following parameter bytes. */ … … 1455 1455 case 14: pReply->fIrqChannel14 = 1; break; 1456 1456 case 15: pReply->fIrqChannel15 = 1; break; 1457 default: 1457 default: 1458 1458 Log(("Inquire configuration: PCI IRQ %d cannot be represented\n", uPciIrq)); 1459 1459 break; … … 3347 3347 /* fFlags */ 3348 3348 PDM_DEVREG_FLAGS_DEFAULT_BITS | PDM_DEVREG_FLAGS_RC | PDM_DEVREG_FLAGS_R0 | 3349 PDM_DEVREG_FLAGS_FIRST_SUSPEND_NOTIFICATION | PDM_DEVREG_FLAGS_FIRST_POWEROFF_NOTIFICATION, 3349 PDM_DEVREG_FLAGS_FIRST_SUSPEND_NOTIFICATION | PDM_DEVREG_FLAGS_FIRST_POWEROFF_NOTIFICATION | 3350 PDM_DEVREG_FLAGS_FIRST_RESET_NOTIFICATION, 3350 3351 /* fClass */ 3351 3352 PDM_DEVREG_CLASS_STORAGE, -
trunk/src/VBox/Devices/Storage/DevLsiLogicSCSI.cpp
r40642 r43472 5 5 6 6 /* 7 * Copyright (C) 2006-20 09Oracle Corporation7 * Copyright (C) 2006-2012 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 5346 5346 /* fFlags */ 5347 5347 PDM_DEVREG_FLAGS_DEFAULT_BITS | PDM_DEVREG_FLAGS_RC | PDM_DEVREG_FLAGS_R0 | 5348 PDM_DEVREG_FLAGS_FIRST_SUSPEND_NOTIFICATION | PDM_DEVREG_FLAGS_FIRST_POWEROFF_NOTIFICATION, 5348 PDM_DEVREG_FLAGS_FIRST_SUSPEND_NOTIFICATION | PDM_DEVREG_FLAGS_FIRST_POWEROFF_NOTIFICATION | 5349 PDM_DEVREG_FLAGS_FIRST_RESET_NOTIFICATION, 5349 5350 /* fClass */ 5350 5351 PDM_DEVREG_CLASS_STORAGE,
Note:
See TracChangeset
for help on using the changeset viewer.