Changeset 71779 in vbox for trunk/src/VBox
- Timestamp:
- Apr 9, 2018 3:27:34 PM (7 years ago)
- Location:
- trunk/src/VBox/Devices/Input
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Input/UsbKbd.cpp
r69500 r71779 992 992 return usbHidCompleteOk(pThis, pUrb, sizeof(wRet) + sizeof(*pSetup)); 993 993 } 994 else 995 { 996 Log(("usbHid: GET_STATUS (interface) invalid, wIndex=%#x\n", pSetup->wIndex)); 997 } 994 Log(("usbHid: GET_STATUS (interface) invalid, wIndex=%#x\n", pSetup->wIndex)); 998 995 break; 999 996 } … … 1007 1004 return usbHidCompleteOk(pThis, pUrb, sizeof(wRet) + sizeof(*pSetup)); 1008 1005 } 1009 else 1010 { 1011 Log(("usbHid: GET_STATUS (endpoint) invalid, wIndex=%#x\n", pSetup->wIndex)); 1012 } 1006 Log(("usbHid: GET_STATUS (endpoint) invalid, wIndex=%#x\n", pSetup->wIndex)); 1013 1007 break; 1014 1008 } -
trunk/src/VBox/Devices/Input/UsbMouse.cpp
r69500 r71779 2086 2086 return usbHidCompleteOk(pThis, pUrb, sizeof(wRet) + sizeof(*pSetup)); 2087 2087 } 2088 else 2089 { 2090 LogRelFlow(("usbHid: GET_STATUS (interface) invalid, wIndex=%#x\n", 2091 pSetup->wIndex)); 2092 } 2088 LogRelFlow(("usbHid: GET_STATUS (interface) invalid, wIndex=%#x\n", pSetup->wIndex)); 2093 2089 break; 2094 2090 } … … 2102 2098 return usbHidCompleteOk(pThis, pUrb, sizeof(wRet) + sizeof(*pSetup)); 2103 2099 } 2104 else 2105 { 2106 LogRelFlow(("usbHid: GET_STATUS (endpoint) invalid, wIndex=%#x\n", 2107 pSetup->wIndex)); 2108 } 2100 LogRelFlow(("usbHid: GET_STATUS (endpoint) invalid, wIndex=%#x\n", pSetup->wIndex)); 2109 2101 break; 2110 2102 }
Note:
See TracChangeset
for help on using the changeset viewer.