lms: Move initialization of field started to constructor

Change-Id: I135a2ff4a419775169452be1128c7b30f7d638ad
This commit is contained in:
Pau Espin 2020-01-07 16:10:34 +01:00
parent 7c84925ea4
commit bf58370675
1 changed files with 1 additions and 3 deletions

View File

@ -49,7 +49,7 @@ LMSDevice::LMSDevice(size_t tx_sps, size_t rx_sps, InterfaceType iface, size_t c
const std::vector<std::string>& tx_paths,
const std::vector<std::string>& rx_paths):
RadioDevice(tx_sps, rx_sps, iface, chans, lo_offset, tx_paths, rx_paths),
m_lms_dev(NULL)
m_lms_dev(NULL), started(false)
{
LOGC(DDEV, INFO) << "creating LMS device...";
@ -248,8 +248,6 @@ int LMSDevice::open(const std::string &args, int ref, bool swap_channels)
for (size_t i = 0; i < rx_buffers.size(); i++)
rx_buffers[i] = new smpl_buf(SAMPLE_BUF_SZ / sizeof(uint32_t));
started = false;
return NORMAL;
out_close: