aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/e300/e300_impl.hpp
diff options
context:
space:
mode:
authorAndrej Rode <andrej.rode@ettus.com>2016-12-19 16:28:16 -0800
committerMartin Braun <martin.braun@ettus.com>2017-01-12 15:15:37 -0800
commita12fc913a078c6c2cf16787e64f4f24d448ff2f6 (patch)
tree7b0b72e452551d9770a5b9c5d0ecda2a3fe83da5 /host/lib/usrp/e300/e300_impl.hpp
parent6e3939f4a56e8daa82fe00c130208cbe6db3f7c1 (diff)
downloaduhd-a12fc913a078c6c2cf16787e64f4f24d448ff2f6.tar.gz
uhd-a12fc913a078c6c2cf16787e64f4f24d448ff2f6.tar.bz2
uhd-a12fc913a078c6c2cf16787e64f4f24d448ff2f6.zip
lib: add default ctors to structs and initialize members properly
Diffstat (limited to 'host/lib/usrp/e300/e300_impl.hpp')
-rw-r--r--host/lib/usrp/e300/e300_impl.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/host/lib/usrp/e300/e300_impl.hpp b/host/lib/usrp/e300/e300_impl.hpp
index 632424438..50d78fdd4 100644
--- a/host/lib/usrp/e300/e300_impl.hpp
+++ b/host/lib/usrp/e300/e300_impl.hpp
@@ -189,7 +189,8 @@ private: // types
{
gpio_t() : pps_sel(global_regs::PPS_INT),
mimo(0), codec_arst(0), tx_bandsels(0),
- rx_bandsel_a(0), rx_bandsel_b(0), rx_bandsel_c(0)
+ rx_bandsel_a(0), rx_bandsel_b(0), rx_bandsel_c(0),
+ time_sync(0)
{}
uint32_t pps_sel;