Lines Matching refs:fe
125 static int mt2266_set_params(struct dvb_frontend *fe) in mt2266_set_params() argument
127 struct dtv_frontend_properties *c = &fe->dtv_property_cache; in mt2266_set_params()
137 priv = fe->tuner_priv; in mt2266_set_params()
264 static int mt2266_get_frequency(struct dvb_frontend *fe, u32 *frequency) in mt2266_get_frequency() argument
266 struct mt2266_priv *priv = fe->tuner_priv; in mt2266_get_frequency()
271 static int mt2266_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth) in mt2266_get_bandwidth() argument
273 struct mt2266_priv *priv = fe->tuner_priv; in mt2266_get_bandwidth()
278 static int mt2266_init(struct dvb_frontend *fe) in mt2266_init() argument
281 struct mt2266_priv *priv = fe->tuner_priv; in mt2266_init()
291 static int mt2266_sleep(struct dvb_frontend *fe) in mt2266_sleep() argument
293 struct mt2266_priv *priv = fe->tuner_priv; in mt2266_sleep()
299 static int mt2266_release(struct dvb_frontend *fe) in mt2266_release() argument
301 kfree(fe->tuner_priv); in mt2266_release()
302 fe->tuner_priv = NULL; in mt2266_release()
321 struct dvb_frontend * mt2266_attach(struct dvb_frontend *fe, struct i2c_adapter *i2c, struct mt2266… in mt2266_attach() argument
343 memcpy(&fe->ops.tuner_ops, &mt2266_tuner_ops, sizeof(struct dvb_tuner_ops)); in mt2266_attach()
345 fe->tuner_priv = priv; in mt2266_attach()
347 return fe; in mt2266_attach()