Lines Matching refs:fe

11 static int stb6100_get_freq(struct dvb_frontend *fe, u32 *frequency)  in stb6100_get_freq()  argument
13 struct dvb_frontend_ops *frontend_ops = &fe->ops; in stb6100_get_freq()
19 frontend_ops->i2c_gate_ctrl(fe, 1); in stb6100_get_freq()
21 err = tuner_ops->get_frequency(fe, frequency); in stb6100_get_freq()
28 frontend_ops->i2c_gate_ctrl(fe, 0); in stb6100_get_freq()
34 static int stb6100_set_freq(struct dvb_frontend *fe, u32 frequency) in stb6100_set_freq() argument
36 struct dvb_frontend_ops *frontend_ops = &fe->ops; in stb6100_set_freq()
38 struct dtv_frontend_properties *c = &fe->dtv_property_cache; in stb6100_set_freq()
47 frontend_ops->i2c_gate_ctrl(fe, 1); in stb6100_set_freq()
49 err = tuner_ops->set_params(fe); in stb6100_set_freq()
57 frontend_ops->i2c_gate_ctrl(fe, 0); in stb6100_set_freq()
64 static int stb6100_get_bandw(struct dvb_frontend *fe, u32 *bandwidth) in stb6100_get_bandw() argument
66 struct dvb_frontend_ops *frontend_ops = &fe->ops; in stb6100_get_bandw()
72 frontend_ops->i2c_gate_ctrl(fe, 1); in stb6100_get_bandw()
74 err = tuner_ops->get_bandwidth(fe, bandwidth); in stb6100_get_bandw()
81 frontend_ops->i2c_gate_ctrl(fe, 0); in stb6100_get_bandw()
87 static int stb6100_set_bandw(struct dvb_frontend *fe, u32 bandwidth) in stb6100_set_bandw() argument
89 struct dvb_frontend_ops *frontend_ops = &fe->ops; in stb6100_set_bandw()
91 struct dtv_frontend_properties *c = &fe->dtv_property_cache; in stb6100_set_bandw()
100 frontend_ops->i2c_gate_ctrl(fe, 1); in stb6100_set_bandw()
102 err = tuner_ops->set_params(fe); in stb6100_set_bandw()
110 frontend_ops->i2c_gate_ctrl(fe, 0); in stb6100_set_bandw()