lms: Fix coding style

In Change-Id Ib2fca81b76d027b08e2891056fa076d071597783 we introduced
some coding style violations.  Let's make newly-added code follows
standard Osmocom coding style.

Change-Id: Ib7ddd275014f03a2eed3cddc02b1356e2b00c0bc
This commit is contained in:
Harald Welte
2018-06-13 23:32:42 +02:00
parent 9939ccd0de
commit 35a067ea7c
3 changed files with 10 additions and 12 deletions

View File

@@ -100,19 +100,19 @@ int LMSDevice::open(const std::string &args, int ref, bool swap_channels)
LMS_RegisterLogHandler(&lms_log_callback);
if ((n = LMS_GetDeviceList(NULL)) < 0)
LOG(ERROR) << "LMS_GetDeviceList(NULL) failed";
LOG(DEBUG) << "Devices found: " << n;
if (n < 1)
return -1;
if ((n = LMS_GetDeviceList(NULL)) < 0)
LOG(ERROR) << "LMS_GetDeviceList(NULL) failed";
LOG(DEBUG) << "Devices found: " << n;
if (n < 1)
return -1;
info_list = new lms_info_str_t[n];
info_list = new lms_info_str_t[n];
if (LMS_GetDeviceList(info_list) < 0) //Populate device list
LOG(ERROR) << "LMS_GetDeviceList(info_list) failed";
if (LMS_GetDeviceList(info_list) < 0)
LOG(ERROR) << "LMS_GetDeviceList(info_list) failed";
for (i = 0; i < n; i++) //print device list
LOG(DEBUG) << "Device [" << i << "]: " << info_list[i];
for (i = 0; i < n; i++)
LOG(DEBUG) << "Device [" << i << "]: " << info_list[i];
rc = LMS_Open(&m_lms_dev, info_list[0], NULL);
if (rc != 0) {

View File

@@ -46,7 +46,6 @@ private:
std::vector<uint32_t> m_last_tx_underruns;
std::vector<uint32_t> m_last_tx_overruns;
size_t chans;
double actualSampleRate; ///< the actual USRP sampling rate
unsigned long long samplesRead; ///< number of samples read from LMS

View File

@@ -282,7 +282,6 @@ private:
enum TxWindowType tx_window;
enum uhd_dev_type dev_type;
size_t rx_sps, chans;
double tx_rate, rx_rate;
double tx_gain_min, tx_gain_max;