diff options
author | Josh Blum <josh@joshknows.com> | 2010-09-28 16:53:52 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-09-28 16:53:52 -0700 |
commit | e4c6f42ff30aeaedf2d1eb426a221b85236fb74e (patch) | |
tree | e3736b934263e84ca0a35e025703465990ad8f41 /host/include | |
parent | 071c4d4226d9cbeb1f1f67139261b13205816d8a (diff) | |
download | uhd-e4c6f42ff30aeaedf2d1eb426a221b85236fb74e.tar.gz uhd-e4c6f42ff30aeaedf2d1eb426a221b85236fb74e.tar.bz2 uhd-e4c6f42ff30aeaedf2d1eb426a221b85236fb74e.zip |
usb: submit should return ssize_t, usrp1: set hash before reset after fw load
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/transport/usb_control.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/include/uhd/transport/usb_control.hpp b/host/include/uhd/transport/usb_control.hpp index 6137ecf84..f9829c3ec 100644 --- a/host/include/uhd/transport/usb_control.hpp +++ b/host/include/uhd/transport/usb_control.hpp @@ -50,9 +50,9 @@ public: * \param index 2-byte (wIndex) * \param buff buffer to hold send or receive data * \param length 2-byte (wLength) - * \return number of bytes submitted + * \return number of bytes submitted or error code */ - virtual size_t submit(boost::uint8_t request_type, + virtual ssize_t submit(boost::uint8_t request_type, boost::uint8_t request, boost::uint16_t value, boost::uint16_t index, |