aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/transport/liberio_zero_copy.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/transport/liberio_zero_copy.hpp')
-rw-r--r--host/lib/transport/liberio_zero_copy.hpp35
1 files changed, 0 insertions, 35 deletions
diff --git a/host/lib/transport/liberio_zero_copy.hpp b/host/lib/transport/liberio_zero_copy.hpp
deleted file mode 100644
index b41b6416c..000000000
--- a/host/lib/transport/liberio_zero_copy.hpp
+++ /dev/null
@@ -1,35 +0,0 @@
-//
-// Copyright 2017 Ettus Research
-// Copyright 2018 Ettus Research, a National Instruments Company
-//
-// SPDX-License-Identifier: GPL-3.0-or-later
-//
-
-#ifndef LIBERIO_HPP
-#define LIBERIO_HPP
-
-#include <uhd/config.hpp>
-#include <uhd/transport/zero_copy.hpp>
-#include <uhd/types/device_addr.hpp>
-#include <boost/shared_ptr.hpp>
-#include <string>
-#include <vector>
-
-namespace uhd { namespace transport {
-
-/*!
- * A zero copy transport interface to the liberio DMA library.
- */
-class liberio_zero_copy : public virtual zero_copy_if
-{
-public:
- typedef boost::shared_ptr<liberio_zero_copy> sptr;
-
- static sptr make(const std::string& tx_path,
- const std::string& rx_path,
- const zero_copy_xport_params& default_buff_args);
-};
-
-}} // namespace uhd::transport
-
-#endif /* LIBERIO_HPP */