Lines Matching refs:uitmp
240 unsigned int uitmp, uitmp1, uitmp2;
300 uitmp = dev->f_adc;
302 uitmp = dev->rx_bandwidth->val;
305 if (uitmp <= bandwidth_lut[i].freq) {
306 uitmp = bandwidth_lut[i].freq;
310 dev->rx_bandwidth->val = uitmp;
311 dev->rx_bandwidth->cur.val = uitmp;
312 dev_dbg(&intf->dev, "RX bandwidth selected=%u\n", uitmp);
316 uitmp = dev->f_dac;
318 uitmp = dev->tx_bandwidth->val;
321 if (uitmp <= bandwidth_lut[i].freq) {
322 uitmp = bandwidth_lut[i].freq;
326 dev->tx_bandwidth->val = uitmp;
327 dev->tx_bandwidth->cur.val = uitmp;
328 dev_dbg(&intf->dev, "TX bandwidth selected=%u\n", uitmp);
331 uitmp = 0;
333 if (uitmp) {
335 uitmp1 |= ((uitmp >> 0) & 0xff) << 0;
336 uitmp1 |= ((uitmp >> 8) & 0xff) << 8;
337 uitmp2 |= ((uitmp >> 16) & 0xff) << 0;
338 uitmp2 |= ((uitmp >> 24) & 0xff) << 8;
1095 unsigned int uitmp;
1101 uitmp = clamp(f->frequency, bands_adc_dac[0].rangelow,
1104 dev->f_adc = uitmp;
1107 dev->f_dac = uitmp;
1111 uitmp = clamp(f->frequency, bands_rx_tx[0].rangelow,
1114 dev->f_rx = uitmp;
1117 dev->f_tx = uitmp;