Lines Matching refs:fe

64 static int stb6100_release(struct dvb_frontend *fe);
238 static int stb6100_get_status(struct dvb_frontend *fe, u32 *status) in stb6100_get_status() argument
241 struct stb6100_state *state = fe->tuner_priv; in stb6100_get_status()
251 static int stb6100_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth) in stb6100_get_bandwidth() argument
255 struct stb6100_state *state = fe->tuner_priv; in stb6100_get_bandwidth()
269 static int stb6100_set_bandwidth(struct dvb_frontend *fe, u32 bandwidth) in stb6100_set_bandwidth() argument
273 struct stb6100_state *state = fe->tuner_priv; in stb6100_set_bandwidth()
307 static int stb6100_get_frequency(struct dvb_frontend *fe, u32 *frequency) in stb6100_get_frequency() argument
312 struct stb6100_state *state = fe->tuner_priv; in stb6100_get_frequency()
333 static int stb6100_set_frequency(struct dvb_frontend *fe, u32 frequency) in stb6100_set_frequency() argument
337 struct stb6100_state *state = fe->tuner_priv; in stb6100_set_frequency()
338 struct dtv_frontend_properties *p = &fe->dtv_property_cache; in stb6100_set_frequency()
346 if (fe->ops.get_frontend) { in stb6100_set_frequency()
348 fe->ops.get_frontend(fe); in stb6100_set_frequency()
489 static int stb6100_sleep(struct dvb_frontend *fe) in stb6100_sleep() argument
495 static int stb6100_init(struct dvb_frontend *fe) in stb6100_init() argument
497 struct stb6100_state *state = fe->tuner_priv; in stb6100_init()
512 static int stb6100_get_state(struct dvb_frontend *fe, in stb6100_get_state() argument
518 stb6100_get_frequency(fe, &state->frequency); in stb6100_get_state()
525 stb6100_get_bandwidth(fe, &state->bandwidth); in stb6100_get_state()
536 static int stb6100_set_state(struct dvb_frontend *fe, in stb6100_set_state() argument
540 struct stb6100_state *tstate = fe->tuner_priv; in stb6100_set_state()
544 stb6100_set_frequency(fe, state->frequency); in stb6100_set_state()
552 stb6100_set_bandwidth(fe, state->bandwidth); in stb6100_set_state()
580 struct dvb_frontend *stb6100_attach(struct dvb_frontend *fe, in stb6100_attach() argument
592 state->frontend = fe; in stb6100_attach()
594 fe->tuner_priv = state; in stb6100_attach()
595 fe->ops.tuner_ops = stb6100_ops; in stb6100_attach()
598 return fe; in stb6100_attach()
601 static int stb6100_release(struct dvb_frontend *fe) in stb6100_release() argument
603 struct stb6100_state *state = fe->tuner_priv; in stb6100_release()
605 fe->tuner_priv = NULL; in stb6100_release()