Searched defs:freq_hz (Results 1 - 4 of 4) sorted by relevance

/drivers/tty/serial/
H A Dapbuart.c607 const u32 *freq_hz; local
617 freq_hz = of_get_property(np, "freq", NULL);
619 if (!regs || !freq_hz || (*freq_hz == 0))
635 port->uartclk = *freq_hz;
/drivers/media/dvb/frontends/
H A Dcx24113.c310 s32 freq_hz = state->frequency * 1000; local
330 dprintk("calculating N/F for %dHz with vcodiv %d\n", freq_hz, vcodiv);
336 N = (freq_hz / 100 * vcodiv) * R;
347 F = freq_hz;
/drivers/media/common/tuners/
H A Dxc4000.c96 u32 freq_hz; member in struct:xc4000_priv
404 static int xc_set_rf_frequency(struct xc4000_priv *priv, u32 freq_hz) argument
408 dprintk(1, "%s(%u)\n", __func__, freq_hz);
410 if ((freq_hz > xc4000_tuner_ops.info.frequency_max) ||
411 (freq_hz < xc4000_tuner_ops.info.frequency_min))
414 freq_code = (u16)(freq_hz / 15625);
516 static int xc_tune_channel(struct xc4000_priv *priv, u32 freq_hz) argument
521 dprintk(1, "%s(%u)\n", __func__, freq_hz);
525 result = xc_set_rf_frequency(priv, freq_hz);
1161 priv->freq_hz
[all...]
H A Dxc5000.c60 u32 freq_hz; member in struct:xc5000_priv
414 static int xc_set_RF_frequency(struct xc5000_priv *priv, u32 freq_hz) argument
418 dprintk(1, "%s(%u)\n", __func__, freq_hz);
420 if ((freq_hz > xc5000_tuner_ops.info.frequency_max) ||
421 (freq_hz < xc5000_tuner_ops.info.frequency_min))
424 freq_code = (u16)(freq_hz / 15625);
532 static int xc_tune_channel(struct xc5000_priv *priv, u32 freq_hz, int mode) argument
536 dprintk(1, "%s(%u)\n", __func__, freq_hz);
538 if (xc_set_RF_frequency(priv, freq_hz) != XC_RESULT_SUCCESS)
652 priv->freq_hz
[all...]

Completed in 197 milliseconds