From 884d4c272e0c4330ff877d389b833fd648c066dd Mon Sep 17 00:00:00 2001 From: Benjamin David Lunt Date: Fri, 10 Mar 2023 11:56:12 -0700 Subject: [PATCH] USB emulation update fix two comments --- bochs/iodev/usb/usb_msd.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bochs/iodev/usb/usb_msd.cc b/bochs/iodev/usb/usb_msd.cc index e310e2bcb..282919bf1 100644 --- a/bochs/iodev/usb/usb_msd.cc +++ b/bochs/iodev/usb/usb_msd.cc @@ -677,7 +677,7 @@ bool usb_msd_device_c::init() * in the configuration, simply uncomment this line. I use * it when I am working on this emulation. */ - LOG_THIS setonoff(LOGLEV_DEBUG, ACT_REPORT); + //LOG_THIS setonoff(LOGLEV_DEBUG, ACT_REPORT); // check to make sure correct speed is used if the proto is uasp if ((s.proto == MSD_PROTO_UASP) && (d.speed < USB_SPEED_HIGH)) { @@ -1023,7 +1023,7 @@ int usb_msd_device_c::handle_data(USBPacket *p) BX_DEBUG(("EP%d transfer length (%d) is greater than Max Packet Size (%d).", p->devep, p->len, get_mps(p->devep))); } - // are we are doing bbb interface? + // are we doing bbb interface? if (aIface == MSD_PROTO_BBB) { switch (p->pid) { case USB_TOKEN_OUT: