Lines Matching refs:t_state
24 struct tuner_state t_state; in tda8261_get_frequency() local
28 err = tuner_ops->get_state(fe, DVBFE_TUNER_FREQUENCY, &t_state); in tda8261_get_frequency()
33 *frequency = t_state.frequency; in tda8261_get_frequency()
34 printk("%s: Frequency=%d\n", __func__, t_state.frequency); in tda8261_get_frequency()
43 struct tuner_state t_state; in tda8261_set_frequency() local
46 t_state.frequency = frequency; in tda8261_set_frequency()
49 err = tuner_ops->set_state(fe, DVBFE_TUNER_FREQUENCY, &t_state); in tda8261_set_frequency()
55 printk("%s: Frequency=%d\n", __func__, t_state.frequency); in tda8261_set_frequency()
63 struct tuner_state t_state; in tda8261_get_bandwidth() local
67 err = tuner_ops->get_state(fe, DVBFE_TUNER_BANDWIDTH, &t_state); in tda8261_get_bandwidth()
72 *bandwidth = t_state.bandwidth; in tda8261_get_bandwidth()
73 printk("%s: Bandwidth=%d\n", __func__, t_state.bandwidth); in tda8261_get_bandwidth()