diff options
| author | Martin Braun <martin.braun@ettus.com> | 2016-11-23 09:42:29 -0800 | 
|---|---|---|
| committer | Martin Braun <martin.braun@ettus.com> | 2016-11-28 12:17:12 -0800 | 
| commit | b1d08e41e6b5ccb52e447ebd6ca4b1300bb99735 (patch) | |
| tree | 664167947e816d6ade4cc61988aedef694883acd | |
| parent | f00463d2c39185d70eeef8772de74e3a68f26843 (diff) | |
| download | uhd-b1d08e41e6b5ccb52e447ebd6ca4b1300bb99735.tar.gz uhd-b1d08e41e6b5ccb52e447ebd6ca4b1300bb99735.tar.bz2 uhd-b1d08e41e6b5ccb52e447ebd6ca4b1300bb99735.zip  | |
dma fifo: Removed superfluous attribute
| -rw-r--r-- | host/lib/usrp/cores/dma_fifo_core_3000.cpp | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/host/lib/usrp/cores/dma_fifo_core_3000.cpp b/host/lib/usrp/cores/dma_fifo_core_3000.cpp index 908ba906e..e1a841b96 100644 --- a/host/lib/usrp/cores/dma_fifo_core_3000.cpp +++ b/host/lib/usrp/cores/dma_fifo_core_3000.cpp @@ -223,7 +223,7 @@ public:  public:      dma_fifo_core_3000_impl(wb_iface::sptr iface, const size_t base, const size_t readback): -        _iface(iface), _base(base), _fifo_readback(iface, base, readback), +        _iface(iface), _fifo_readback(iface, base, readback),          _fifo_ctrl_reg(base), _base_addr_reg(base), _addr_mask_reg(base),          _bist_ctrl_reg(base), _bist_cfg_reg(base), _bist_delay_reg(base), _bist_sid_reg(base)      { @@ -368,7 +368,6 @@ private:  private:      wb_iface::sptr  _iface; -    const size_t    _base;      boost::mutex    _mutex;      bool            _has_ext_bist;  | 
