Changeset 162 for trunk/src/os2ahci/trace.c
- Timestamp:
- Jun 2, 2013, 5:10:06 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/os2ahci/trace.c
r160 r162 246 246 for (d = 0; d <= pi->dev_max; d++) { 247 247 if (!pi->devs[d].present) continue; 248 ntprintf(" Drive %d: atapi=%d, removable=%d\n", d, pi->devs[d].atapi, pi->devs[d].removable); 248 249 ntprintf(" Drive %d:"); 250 if (pi->devs[d].atapi) ntprintf(" atapi"); 251 if (pi->devs[d].removable) ntprintf(" removable"); 252 if (pi->devs[d].dev_info.Method != NULL) 253 ntprintf(" %d cylinders, %d heads, %d sectors per track (%ldMB) (%s)", 254 pi->devs[d].dev_info.Cylinders, pi->devs[d].dev_info.HeadsPerCylinder, pi->devs[d].dev_info.SectorsPerTrack, 255 pi->devs[d].dev_info.TotalSectors/2048, pi->devs[d].dev_info.Method); 256 ntprintf("\n"); 249 257 } 250 258 }
Note:
See TracChangeset
for help on using the changeset viewer.