uhd: Fix compile errors
authorKhem Raj <raj.khem@gmail.com>
Mon, 1 Jul 2013 07:23:21 +0000 (07:23 +0000)
committerPatrick Ohly <patrick.ohly@intel.com>
Fri, 9 Jan 2015 16:31:20 +0000 (08:31 -0800)
uhd would fail with wrong scope for uint8_t type
errors.

(From meta-openembedded rev: 830baf380ea86782a5a52fbe8762904840e05691)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
CC: Philip Balister <philip@balister.org>
Acked-by: Philip Balister <philip@balister.org>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
meta-openembedded/meta-oe/recipes-connectivity/uhd/uhd/0001-use-uint8_t-from-boost-namespace.patch [new file with mode: 0644]
meta-openembedded/meta-oe/recipes-connectivity/uhd/uhd_git.bb

diff --git a/meta-openembedded/meta-oe/recipes-connectivity/uhd/uhd/0001-use-uint8_t-from-boost-namespace.patch b/meta-openembedded/meta-oe/recipes-connectivity/uhd/uhd/0001-use-uint8_t-from-boost-namespace.patch
new file mode 100644 (file)
index 0000000..8978ddc
--- /dev/null
@@ -0,0 +1,29 @@
+From 317f6f08cedf005ce1f2d6f0d04cfb2659863423 Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Sun, 30 Jun 2013 22:10:50 -0700
+Subject: [PATCH] use uint8_t from boost namespace
+
+Fixes errors like
+codec_ctrl.cpp:113:10: error: 'uint8_t' was not declared in this scope
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+ host/lib/usrp/e100/codec_ctrl.cpp |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/host/lib/usrp/e100/codec_ctrl.cpp b/host/lib/usrp/e100/codec_ctrl.cpp
+index 13b3bc9..2c13176 100644
+--- a/host/lib/usrp/e100/codec_ctrl.cpp
++++ b/host/lib/usrp/e100/codec_ctrl.cpp
+@@ -110,7 +110,7 @@ e100_codec_ctrl_impl::e100_codec_ctrl_impl(spi_iface::sptr iface){
+     //_ad9862_regs.dis2 = ad9862_regs_t::DIS2_DIS; needed for transmit
+     //write the register settings to the codec
+-    for (uint8_t addr = 0; addr <= 25; addr++){
++    for (boost::uint8_t addr = 0; addr <= 25; addr++){
+         this->send_reg(addr);
+     }
+-- 
+1.7.9.5
+
index 06d5eff..180fd27 100644 (file)
@@ -4,7 +4,8 @@ PV = "3.5.3"
 PR = "${INC_PR}.0"
 
 SRC_URI = "git://ettus.sourcerepo.com/ettus/uhd.git;branch=maint;protocol=git \
-"
+           file://0001-use-uint8_t-from-boost-namespace.patch;striplevel=2 \
+          "
 S = "${WORKDIR}/git/host"
 
 SRCREV = "f4c58120dc1e3674ee0228213f0f0011a0f80dcf"