Lines Matching refs:t_state
26 struct tuner_state t_state; in stb6100_get_frequency() local
30 err = tuner_ops->get_state(fe, DVBFE_TUNER_FREQUENCY, &t_state); in stb6100_get_frequency()
35 *frequency = t_state.frequency; in stb6100_get_frequency()
44 struct tuner_state t_state; in stb6100_set_frequency() local
47 t_state.frequency = frequency; in stb6100_set_frequency()
50 err = tuner_ops->set_state(fe, DVBFE_TUNER_FREQUENCY, &t_state); in stb6100_set_frequency()
63 struct tuner_state t_state; in stb6100_get_bandwidth() local
67 err = tuner_ops->get_state(fe, DVBFE_TUNER_BANDWIDTH, &t_state); in stb6100_get_bandwidth()
72 *bandwidth = t_state.bandwidth; in stb6100_get_bandwidth()
81 struct tuner_state t_state; in stb6100_set_bandwidth() local
84 t_state.bandwidth = bandwidth; in stb6100_set_bandwidth()
87 err = tuner_ops->set_state(fe, DVBFE_TUNER_BANDWIDTH, &t_state); in stb6100_set_bandwidth()