diff options
author | Josh Blum <josh@joshknows.com> | 2010-09-23 15:42:55 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-09-23 17:22:35 -0700 |
commit | 1826421cd428f795b4b8cd0acdad4fea92262f72 (patch) | |
tree | 8c92b65f4d3cf73327ed1a4cb2aee7f98ab10f60 /host/lib | |
parent | 27cb282a29c0d9d67393f3f35548a5111359f1b0 (diff) | |
download | uhd-1826421cd428f795b4b8cd0acdad4fea92262f72.tar.gz uhd-1826421cd428f795b4b8cd0acdad4fea92262f72.tar.bz2 uhd-1826421cd428f795b4b8cd0acdad4fea92262f72.zip |
libusb: various minor code tweaks
Diffstat (limited to 'host/lib')
-rw-r--r-- | host/lib/transport/CMakeLists.txt | 1 | ||||
-rw-r--r-- | host/lib/transport/libusb1_base.hpp | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/host/lib/transport/CMakeLists.txt b/host/lib/transport/CMakeLists.txt index 71a3a1494..acd699fc5 100644 --- a/host/lib/transport/CMakeLists.txt +++ b/host/lib/transport/CMakeLists.txt @@ -30,6 +30,7 @@ IF(LIBUSB_FOUND) ${CMAKE_SOURCE_DIR}/lib/transport/libusb1_control.cpp ${CMAKE_SOURCE_DIR}/lib/transport/libusb1_zero_copy.cpp ${CMAKE_SOURCE_DIR}/lib/transport/libusb1_base.cpp + ${CMAKE_SOURCE_DIR}/lib/transport/libusb1_base.hpp ${CMAKE_SOURCE_DIR}/lib/transport/libusb1_device_handle.cpp ) SET(HAVE_USB_SUPPORT TRUE) diff --git a/host/lib/transport/libusb1_base.hpp b/host/lib/transport/libusb1_base.hpp index abe5e22a2..484bcf3d9 100644 --- a/host/lib/transport/libusb1_base.hpp +++ b/host/lib/transport/libusb1_base.hpp @@ -15,8 +15,8 @@ // along with this program. If not, see <http://www.gnu.org/licenses/>. // -#ifndef INCLUDED_TRANSPORT_LIBUSB_HPP -#define INCLUDED_TRANSPORT_LIBUSB_HPP +#ifndef INCLUDED_LIBUHD_TRANSPORT_LIBUSB_HPP +#define INCLUDED_LIBUHD_TRANSPORT_LIBUSB_HPP #include <uhd/config.hpp> #include <uhd/transport/usb_device_handle.hpp> @@ -91,4 +91,4 @@ namespace libusb { }} //namespace -#endif /* INCLUDED_TRANSPORT_LIBUSB_HPP */ +#endif /* INCLUDED_LIBUHD_TRANSPORT_LIBUSB_HPP */ |