usb_ehci log fix (#116)

Simply change two BX_INFOs to BX_DEBUGs to keep from over populating the
log file.
This commit is contained in:
Benjamin David Lunt 2023-10-30 21:33:14 -07:00 committed by GitHub
parent f4af2d4e24
commit 586443f1ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -653,7 +653,7 @@ bool bx_usb_ehci_c::set_connect_status(Bit8u port, bool connected)
}
}
} else { // not connected
BX_INFO(("port #%d: device disconnect", port+1));
BX_DEBUG(("port #%d: device disconnect", port+1));
if (BX_EHCI_THIS hub.usb_port[port].portsc.po) {
if (get_port_routing(port, &n_cc, &n_pcc)) {
if (BX_EHCI_THIS companion_type == EHCI_COMPANION_UHCI)
@ -699,7 +699,7 @@ void bx_usb_ehci_c::change_port_owner(int port)
} else {
usb_device_c *device = BX_EHCI_THIS hub.usb_port[port].device;
if (BX_EHCI_THIS hub.usb_port[port].owner_change) {
BX_INFO(("port #%d: owner change to %s", port + 1,
BX_DEBUG(("port #%d: owner change to %s", port + 1,
BX_EHCI_THIS hub.usb_port[port].portsc.po ? "EHCI" :
((BX_EHCI_THIS companion_type == EHCI_COMPANION_UHCI) ? "UHCI" : "OHCI")));
if (device != NULL) {