Lines Matching refs:fe

23 static int stb6100_get_freq(struct dvb_frontend *fe, u32 *frequency)  in stb6100_get_freq()  argument
25 struct dvb_frontend_ops *frontend_ops = &fe->ops; in stb6100_get_freq()
31 frontend_ops->i2c_gate_ctrl(fe, 1); in stb6100_get_freq()
33 err = tuner_ops->get_frequency(fe, frequency); in stb6100_get_freq()
40 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()
50 struct dtv_frontend_properties *c = &fe->dtv_property_cache; in stb6100_set_freq()
59 frontend_ops->i2c_gate_ctrl(fe, 1); in stb6100_set_freq()
61 err = tuner_ops->set_params(fe); in stb6100_set_freq()
69 frontend_ops->i2c_gate_ctrl(fe, 0); in stb6100_set_freq()
76 static int stb6100_get_bandw(struct dvb_frontend *fe, u32 *bandwidth) in stb6100_get_bandw() argument
78 struct dvb_frontend_ops *frontend_ops = &fe->ops; in stb6100_get_bandw()
84 frontend_ops->i2c_gate_ctrl(fe, 1); in stb6100_get_bandw()
86 err = tuner_ops->get_bandwidth(fe, bandwidth); in stb6100_get_bandw()
93 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()
103 struct dtv_frontend_properties *c = &fe->dtv_property_cache; in stb6100_set_bandw()
112 frontend_ops->i2c_gate_ctrl(fe, 1); in stb6100_set_bandw()
114 err = tuner_ops->set_params(fe); in stb6100_set_bandw()
122 frontend_ops->i2c_gate_ctrl(fe, 0); in stb6100_set_bandw()