Changeset 67953 in vbox for trunk/src/VBox/Devices/PC
- Timestamp:
- Jul 13, 2017 11:28:45 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS/scsi.c
r67805 r67953 624 624 bus_dev_fn = pci_find_device(vendor_id, device_id); 625 625 if (bus_dev_fn == -1) { 626 BX_INFO("%s: Adapter %x:%x not found, how come?!\n", __func__, vendor_id, device_id);626 DBG_SCSI("%s: Adapter %x:%x not found, how come?!\n", __func__, vendor_id, device_id); 627 627 return; 628 628 } 629 629 630 BX_INFO("%s: Adapter %x:%x found at %x, enabling BM\n", __func__, vendor_id, device_id, bus_dev_fn);630 DBG_SCSI("%s: Adapter %x:%x found at %x, enabling BM\n", __func__, vendor_id, device_id, bus_dev_fn); 631 631 /* Enable PCI memory, I/O, bus mastering access in command register. */ 632 632 pci_write_config_word(bus_dev_fn >> 8, (uint8_t)bus_dev_fn, 4, 0x7);
Note:
See TracChangeset
for help on using the changeset viewer.