Lines Matching refs:fe

74 	struct dvb_frontend  fe;  member
333 static int init(struct dvb_frontend *fe) in init() argument
335 struct dtv_frontend_properties *p = &fe->dtv_property_cache; in init()
354 static void release(struct dvb_frontend *fe) in release() argument
356 struct mxl *state = fe->demodulator_priv; in release()
368 static enum dvbfe_algo get_algo(struct dvb_frontend *fe) in get_algo() argument
418 static int send_master_cmd(struct dvb_frontend *fe, in send_master_cmd() argument
426 static int set_parameters(struct dvb_frontend *fe) in set_parameters() argument
428 struct mxl *state = fe->demodulator_priv; in set_parameters()
429 struct dtv_frontend_properties *p = &fe->dtv_property_cache; in set_parameters()
492 static int sleep(struct dvb_frontend *fe) in sleep() argument
494 struct mxl *state = fe->demodulator_priv; in sleep()
512 static int read_snr(struct dvb_frontend *fe) in read_snr() argument
514 struct mxl *state = fe->demodulator_priv; in read_snr()
517 struct dtv_frontend_properties *p = &fe->dtv_property_cache; in read_snr()
533 static int read_ber(struct dvb_frontend *fe) in read_ber() argument
535 struct mxl *state = fe->demodulator_priv; in read_ber()
536 struct dtv_frontend_properties *p = &fe->dtv_property_cache; in read_ber()
589 static int read_signal_strength(struct dvb_frontend *fe) in read_signal_strength() argument
591 struct mxl *state = fe->demodulator_priv; in read_signal_strength()
592 struct dtv_frontend_properties *p = &fe->dtv_property_cache; in read_signal_strength()
610 static int read_status(struct dvb_frontend *fe, enum fe_status *status) in read_status() argument
612 struct mxl *state = fe->demodulator_priv; in read_status()
613 struct dtv_frontend_properties *p = &fe->dtv_property_cache; in read_status()
629 read_signal_strength(fe); in read_status()
632 read_snr(fe); in read_status()
637 read_ber(fe); in read_status()
648 static int tune(struct dvb_frontend *fe, bool re_tune, in tune() argument
652 struct mxl *state = fe->demodulator_priv; in tune()
657 r = set_parameters(fe); in tune()
663 return read_status(fe, status); in tune()
679 static int get_frontend(struct dvb_frontend *fe, in get_frontend() argument
682 struct mxl *state = fe->demodulator_priv; in get_frontend()
766 static int set_input(struct dvb_frontend *fe, int input) in set_input() argument
768 struct mxl *state = fe->demodulator_priv; in set_input()
1867 state->fe.ops = mxl_ops; in mxl5xx_attach()
1871 state->fe.demodulator_priv = state; in mxl5xx_attach()
1875 return &state->fe; in mxl5xx_attach()