Lines Matching refs:frequency
307 static int stb6100_get_frequency(struct dvb_frontend *fe, u32 *frequency) in stb6100_get_frequency() argument
324 *frequency = state->frequency = fvco >> (odiv + 1); in stb6100_get_frequency()
328 state->frequency, odiv, psd2, state->reference, fvco, nint, nfrac); in stb6100_get_frequency()
333 static int stb6100_set_frequency(struct dvb_frontend *fe, u32 frequency) in stb6100_set_frequency() argument
366 if (frequency <= 1075000) in stb6100_set_frequency()
376 (ptr->val_high != 0) && !CHKRANGE(frequency, ptr->val_low, ptr->val_high); in stb6100_set_frequency()
380 printk(KERN_ERR "%s: frequency out of range: %u kHz\n", __func__, frequency); in stb6100_set_frequency()
388 if ((frequency > 1075000) && (frequency <= 1325000)) in stb6100_set_frequency()
393 fvco = frequency << (1 + odiv); in stb6100_set_frequency()
444 frequency, srate, (unsigned int)g, (unsigned int)odiv, in stb6100_set_frequency()
518 stb6100_get_frequency(fe, &state->frequency); in stb6100_get_state()
544 stb6100_set_frequency(fe, state->frequency); in stb6100_set_state()
545 tstate->frequency = state->frequency; in stb6100_set_state()