aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib
diff options
context:
space:
mode:
authorPaul David <paul.david@ettus.com>2017-03-22 14:51:53 -0400
committerMartin Braun <martin.braun@ettus.com>2017-03-22 14:18:57 -0700
commit51cbfdfd7e7c071914442005139894496ddf6039 (patch)
tree6488caf6af83993a7fe8e27a1f94cf5a97f3e3fd /host/lib
parentaff6165dc938fe072d4872b65be146e6d3f75bec (diff)
downloaduhd-51cbfdfd7e7c071914442005139894496ddf6039.tar.gz
uhd-51cbfdfd7e7c071914442005139894496ddf6039.tar.bz2
uhd-51cbfdfd7e7c071914442005139894496ddf6039.zip
Firmware: fix failures due to fw_comm_protocol.h path
Diffstat (limited to 'host/lib')
-rw-r--r--host/lib/usrp/n230/n230_fw_comm_protocol.h (renamed from host/lib/usrp/n230/fw_comm_protocol.h)6
-rw-r--r--host/lib/usrp/n230/n230_fw_ctrl_iface.cpp2
2 files changed, 4 insertions, 4 deletions
diff --git a/host/lib/usrp/n230/fw_comm_protocol.h b/host/lib/usrp/n230/n230_fw_comm_protocol.h
index 14adb33a9..b7c85f2ba 100644
--- a/host/lib/usrp/n230/fw_comm_protocol.h
+++ b/host/lib/usrp/n230/n230_fw_comm_protocol.h
@@ -15,8 +15,8 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-#ifndef INCLUDED_FW_COMM_PROTOCOL
-#define INCLUDED_FW_COMM_PROTOCOL
+#ifndef INCLUDED_N230_FW_COMM_PROTOCOL
+#define INCLUDED_N230_FW_COMM_PROTOCOL
#include <stdint.h>
#ifndef __cplusplus
@@ -99,4 +99,4 @@ bool process_fw_comm_protocol_pkt(
#endif //ifdef __cplusplus
-#endif /* INCLUDED_FW_COMM_PROTOCOL */
+#endif /* INCLUDED_N230_FW_COMM_PROTOCOL */
diff --git a/host/lib/usrp/n230/n230_fw_ctrl_iface.cpp b/host/lib/usrp/n230/n230_fw_ctrl_iface.cpp
index 07f9bb7d6..18c2c4cf8 100644
--- a/host/lib/usrp/n230/n230_fw_ctrl_iface.cpp
+++ b/host/lib/usrp/n230/n230_fw_ctrl_iface.cpp
@@ -22,7 +22,7 @@
#include <uhd/exception.hpp>
#include <boost/format.hpp>
#include <boost/asio.hpp> //used for htonl and ntohl
-#include "fw_comm_protocol.h"
+#include "n230_fw_comm_protocol.h"
namespace uhd { namespace usrp { namespace n230 {