Changeset 38555 in vbox
- Timestamp:
- Aug 29, 2011 9:58:54 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 73713
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp
r38529 r38555 1593 1593 { 1594 1594 BOOL fEnabled; 1595 BOOL fEhciEnabled; 1595 1596 rc = USBCtl->COMGETTER(Enabled)(&fEnabled); 1596 1597 if (FAILED(rc)) … … 1600 1601 else 1601 1602 RTPrintf("USB: %s\n", fEnabled ? "enabled" : "disabled"); 1603 1604 rc = USBCtl->COMGETTER(EnabledEhci)(&fEhciEnabled); 1605 if (FAILED(rc)) 1606 fEhciEnabled = false; 1607 if (details == VMINFO_MACHINEREADABLE) 1608 RTPrintf("ehci=\"%s\"\n", fEhciEnabled ? "on" : "off"); 1609 else 1610 RTPrintf("EHCI: %s\n", fEhciEnabled ? "enabled" : "disabled"); 1602 1611 1603 1612 SafeIfaceArray <IUSBDeviceFilter> Coll;
Note:
See TracChangeset
for help on using the changeset viewer.