Eliminate unconditional debug printfs.
Linux writes to these nominally read-only registers, so avoid having bhyve write warning messages to stdout when the reg writes can be safely ignored. Change the WPRINTF to DPRINTF which is conditional. Reviewed by: mav Discussed with: mav, Zhixiang Yu MFC after: 3 days
This commit is contained in:
parent
d8a25b54a7
commit
7bb5267c5a
@ -1543,7 +1543,7 @@ pci_ahci_host_write(struct pci_ahci_softc *sc, uint64_t offset, uint64_t value)
|
||||
case AHCI_PI:
|
||||
case AHCI_VS:
|
||||
case AHCI_CAP2:
|
||||
WPRINTF("pci_ahci_host: read only registers 0x%"PRIx64"\n", offset);
|
||||
DPRINTF("pci_ahci_host: read only registers 0x%"PRIx64"\n", offset);
|
||||
break;
|
||||
case AHCI_GHC:
|
||||
if (value & AHCI_GHC_HR)
|
||||
|
Loading…
x
Reference in New Issue
Block a user