Changeset 7043 in vbox for trunk/src/VBox
- Timestamp:
- Feb 20, 2008 3:16:23 PM (17 years ago)
- Location:
- trunk/src/VBox/Devices/Storage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevATA.cpp
r6609 r7043 321 321 /** Size of current DMA buffer (for redo operations). */ 322 322 uint32_t cbRedoDMABuffer; 323 /** Alignmnet padding. */ 324 uint32_t u32Alignment0; 323 325 324 326 /** The ATA/ATAPI interfaces of this controller. */ -
trunk/src/VBox/Devices/Storage/PIIX3ATABmDma.h
r5999 r7043 52 52 /** PIIX3 Bus Master DMA unit state. */ 53 53 typedef struct BMDMAState { 54 /** Address of the MMIO region in the guest's memory space. */ 55 RTGCPHYS pvAddr; 54 56 /** Command register. */ 55 57 uint8_t u8Cmd; 56 58 /** Status register. */ 57 59 uint8_t u8Status; 58 /** Address of the MMIO region in the guest's memory space. */ 59 RTGCPHYS pvAddr; 60 uint8_t au8Alignment[6]; /**< Alignment padding. */ 60 61 } BMDMAState; 61 62 … … 67 68 /** Size of the DMA source/target buffer. */ 68 69 uint32_t cbBuffer; 70 uint32_t u32Alignment; /**< Alignment padding. */ 69 71 } BMDMADesc; 70 72
Note:
See TracChangeset
for help on using the changeset viewer.