Lines Matching defs:dec
255 u16 dec;
257 ret = adis_read_reg_16(&st->adis, ADIS16475_REG_DEC_RATE, &dec);
261 *freq = DIV_ROUND_CLOSEST(st->clk_freq, dec + 1);
268 u16 dec;
274 dec = DIV_ROUND_CLOSEST(st->clk_freq, freq);
276 if (dec)
277 dec--;
279 if (dec > st->info->max_dec)
280 dec = st->info->max_dec;
282 ret = adis_write_reg_16(&st->adis, ADIS16475_REG_DEC_RATE, dec);
290 assign_bit(ADIS16475_LSB_DEC_MASK, &st->lsb_flag, dec);