Changeset 83027 in vbox
- Timestamp:
- Feb 8, 2020 9:21:29 PM (5 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/Devices/PC/BIOS/disk.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS/disk.c
r82980 r83027 68 68 69 69 /* Generic disk read/write routine signature. */ 70 typedef __fastcall (* dsk_rw_func)(bio_dsk_t __far *bios_dsk);70 typedef int __fastcall (* dsk_rw_func)(bio_dsk_t __far *bios_dsk); 71 71 72 72 /* Controller specific disk access routines. Declared as a union to reduce … … 426 426 // should look at 40:8E also??? 427 427 428 #ifdef VBOX_WITH_SCSI 429 /* SCSI drives are always "ready". */ 430 if (!VBOX_IS_SCSI_DEVICE(device)) { 431 #endif 428 432 // Read the status from controller 429 433 status = inb(bios_dsk->channels[device/2].iobase1 + ATA_CB_STAT); … … 434 438 goto int13_fail_noah; 435 439 } 440 #ifdef VBOX_WITH_SCSI 441 } else /* It's not an ATA drive. */ 442 goto int13_success; 443 #endif 436 444 break; 437 445
Note:
See TracChangeset
for help on using the changeset viewer.

