aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/types
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/types')
-rw-r--r--host/lib/types/serial.cpp17
1 files changed, 16 insertions, 1 deletions
diff --git a/host/lib/types/serial.cpp b/host/lib/types/serial.cpp
index 9e9d32954..562261bb7 100644
--- a/host/lib/types/serial.cpp
+++ b/host/lib/types/serial.cpp
@@ -1,5 +1,5 @@
//
-// Copyright 2011 Ettus Research LLC
+// Copyright 2011-2013 Ettus Research LLC
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -21,6 +21,21 @@
using namespace uhd;
+i2c_iface::~i2c_iface(void)
+{
+ //empty
+}
+
+spi_iface::~spi_iface(void)
+{
+ //empty
+}
+
+uart_iface::~uart_iface(void)
+{
+ //empty
+}
+
spi_config_t::spi_config_t(edge_t edge):
mosi_edge(edge),
miso_edge(edge)