Changeset 101
- Timestamp:
- Jun 3, 2011, 10:26:26 PM (14 years ago)
- Location:
- trunk/src/os2ahci
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/os2ahci/ahci.h ¶
r87 r101 176 176 PORT_IRQ_UNK_FIS | PORT_IRQ_BAD_PMP) 177 177 #define PORT_IRQ_ERROR (PORT_IRQ_FREEZE | PORT_IRQ_TF_ERR | \ 178 PORT_IRQ_ HBUS_DATA_ERR)178 PORT_IRQ_OVERFLOW | PORT_IRQ_HBUS_DATA_ERR) 179 179 #define DEF_PORT_IRQ (PORT_IRQ_ERROR | PORT_IRQ_SG_DONE | \ 180 180 PORT_IRQ_SDB_FIS | PORT_IRQ_DMAS_FIS | \ -
TabularUnified trunk/src/os2ahci/ata.c ¶
r87 r101 503 503 } else if (CUR_HEADS(id_buf) > 0 && CUR_CYLS(id_buf) > 0 && 504 504 CUR_SECTORS(id_buf) > 0 && 505 CUR_CAPACITY(id_buf) == CUR_HEADS(id_buf) *506 CUR_CYLS(id_buf) *507 CUR_SECTORS(id_buf)) {505 CUR_CAPACITY(id_buf) == (u32) CUR_HEADS(id_buf) * 506 (u32) CUR_CYLS(id_buf) * 507 (u32) CUR_SECTORS(id_buf)) { 508 508 /* BIOS-supplied (aka "current") geometry values look valid */ 509 509 geometry->NumHeads = CUR_HEADS(id_buf);
Note:
See TracChangeset
for help on using the changeset viewer.