Lines Matching refs:fe

20 static int stb6100_get_freq(struct dvb_frontend *fe, u32 *frequency)  in stb6100_get_freq()  argument
22 struct dvb_frontend_ops *frontend_ops = &fe->ops; in stb6100_get_freq()
29 frontend_ops->i2c_gate_ctrl(fe, 1); in stb6100_get_freq()
31 err = tuner_ops->get_state(fe, DVBFE_TUNER_FREQUENCY, &state); in stb6100_get_freq()
38 frontend_ops->i2c_gate_ctrl(fe, 0); in stb6100_get_freq()
46 static int stb6100_set_freq(struct dvb_frontend *fe, u32 frequency) in stb6100_set_freq() argument
48 struct dvb_frontend_ops *frontend_ops = &fe->ops; in stb6100_set_freq()
57 frontend_ops->i2c_gate_ctrl(fe, 1); in stb6100_set_freq()
59 err = tuner_ops->set_state(fe, DVBFE_TUNER_FREQUENCY, &state); in stb6100_set_freq()
66 frontend_ops->i2c_gate_ctrl(fe, 0); in stb6100_set_freq()
73 static int stb6100_get_bandw(struct dvb_frontend *fe, u32 *bandwidth) in stb6100_get_bandw() argument
75 struct dvb_frontend_ops *frontend_ops = &fe->ops; in stb6100_get_bandw()
82 frontend_ops->i2c_gate_ctrl(fe, 1); in stb6100_get_bandw()
84 err = tuner_ops->get_state(fe, DVBFE_TUNER_BANDWIDTH, &state); in stb6100_get_bandw()
91 frontend_ops->i2c_gate_ctrl(fe, 0); in stb6100_get_bandw()
99 static int stb6100_set_bandw(struct dvb_frontend *fe, u32 bandwidth) in stb6100_set_bandw() argument
101 struct dvb_frontend_ops *frontend_ops = &fe->ops; in stb6100_set_bandw()
110 frontend_ops->i2c_gate_ctrl(fe, 1); in stb6100_set_bandw()
112 err = tuner_ops->set_state(fe, DVBFE_TUNER_BANDWIDTH, &state); in stb6100_set_bandw()
119 frontend_ops->i2c_gate_ctrl(fe, 0); in stb6100_set_bandw()