Changeset 45791 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Apr 28, 2013 4:12:00 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS/eltorito.c
r44692 r45791 109 109 }; 110 110 111 #if defined(VBOX_WITH_AHCI) || defined(VBOX_WITH_SCSI) 112 uint16_t dummy_soft_reset(uint16_t device_id) 113 { 114 return 0; 115 } 116 #endif 117 111 118 /* Generic reset routine signature. */ 112 119 typedef uint16_t (* cd_rst_func)(uint16_t device_id); … … 116 123 [DSK_TYPE_ATAPI] = { ata_soft_reset }, 117 124 #ifdef VBOX_WITH_AHCI 118 [DSK_TYPE_AHCI] = NULL,125 [DSK_TYPE_AHCI] = { dummy_soft_reset }, 119 126 #endif 120 127 #ifdef VBOX_WITH_SCSI 121 [DSK_TYPE_SCSI] = NULL,128 [DSK_TYPE_SCSI] = { dummy_soft_reset }, 122 129 #endif 123 130 };
Note:
See TracChangeset
for help on using the changeset viewer.