diff options
author | vboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f> | 2017-01-05 22:15:09 +0000 |
---|---|---|
committer | vboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f> | 2017-01-05 22:15:09 +0000 |
commit | 4f56abda0b370216c843ad87fad2177d9a4497d4 (patch) | |
tree | 4efd23e6cc88acfdb909dcfe6efbfab895af9a4c /src/VBox/Devices/USB | |
parent | 293bfb7757897974c4714ae57602412f1331fa50 (diff) | |
download | VirtualBox-svn-4f56abda0b370216c843ad87fad2177d9a4497d4.tar.gz |
doxygen fixes
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@65169 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/Devices/USB')
-rw-r--r-- | src/VBox/Devices/USB/DevOHCI.cpp | 4 | ||||
-rw-r--r-- | src/VBox/Devices/USB/VUSBUrb.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/VBox/Devices/USB/DevOHCI.cpp b/src/VBox/Devices/USB/DevOHCI.cpp index e955f976706..70c2035ac8b 100644 --- a/src/VBox/Devices/USB/DevOHCI.cpp +++ b/src/VBox/Devices/USB/DevOHCI.cpp @@ -2219,11 +2219,11 @@ static bool ohciUnlinkTds(POHCI pThis, PVUSBURB pUrb, POHCIED pEd) const uint32_t TdAddr = pUrb->paTds[iTd].TdAddr; /** @todo r=bird: Messing with the toggle flag in prepare is probably not correct - * when we encounter a STALL error, 4.3.1.3.7.2: "If an endpoint returns a STALL + * when we encounter a STALL error, 4.3.1.3.7.2: ''If an endpoint returns a STALL * PID, the Host Controller retires the General TD with the ConditionCode set * to STALL and halts the endpoint. The CurrentBufferPointer, ErrorCount, and * dataToggle fields retain the values that they had at the start of the - * transaction." */ + * transaction.'' */ /* update toggle and set data toggle carry */ pTd->hwinfo &= ~TD_HWINFO_TOGGLE; diff --git a/src/VBox/Devices/USB/VUSBUrb.cpp b/src/VBox/Devices/USB/VUSBUrb.cpp index c1c725f6c66..368ccd5da94 100644 --- a/src/VBox/Devices/USB/VUSBUrb.cpp +++ b/src/VBox/Devices/USB/VUSBUrb.cpp @@ -351,9 +351,9 @@ void vusbUrbCompletionRh(PVUSBURB pUrb) /* Don't bother with error callback for isochronous URBs. */ break; -#if 1 /** @todo r=bird: OHCI say "If the Transfer Descriptor is being +#if 1 /** @todo r=bird: OHCI say ''If the Transfer Descriptor is being * retired because of an error, the Host Controller must update - * the Halt bit of the Endpoint Descriptor." + * the Halt bit of the Endpoint Descriptor.'' * * So, I'll subject all transfertypes to the same halt stuff now. It could * just happen to fix the logitech disconnect trap in win2k. |