Lines Matching refs:freq_cw
113 u32 if_frequency, freq_cw;
172 freq_cw = DIV_ROUND_CLOSEST_ULL((u64)sampling_freq * 0x800000,
176 freq_cw = 0x800000 - freq_cw;
178 buf[0] = (freq_cw >> 0) & 0xff;
179 buf[1] = (freq_cw >> 8) & 0xff;
180 buf[2] = (freq_cw >> 16) & 0x7f;
182 freq_cw = 0x800000 - freq_cw;
184 buf[3] = (freq_cw >> 0) & 0xff;
185 buf[4] = (freq_cw >> 8) & 0xff;
186 buf[5] = (freq_cw >> 16) & 0x7f;