Lines Matching refs:dvb_frontend
92 int (*tuner_init)(struct dvb_frontend *fe);
93 int (*tuner_sleep)(struct dvb_frontend *fe);
94 int (*tuner_set_mode)(struct dvb_frontend *fe, enum tuner_mode mode);
95 int (*tuner_set_frequency)(struct dvb_frontend *fe, u32 frequency);
96 int (*tuner_get_frequency)(struct dvb_frontend *fe, u32 *frequency);
97 int (*tuner_set_bandwidth)(struct dvb_frontend *fe, u32 bandwidth);
98 int (*tuner_get_bandwidth)(struct dvb_frontend *fe, u32 *bandwidth);
99 int (*tuner_set_bbgain)(struct dvb_frontend *fe, u32 gain);
100 int (*tuner_get_bbgain)(struct dvb_frontend *fe, u32 *gain);
101 int (*tuner_set_refclk)(struct dvb_frontend *fe, u32 refclk);
102 int (*tuner_get_status)(struct dvb_frontend *fe, u32 *status);
103 void (*tuner_i2c_lock)(struct dvb_frontend *fe, int lock);
106 int (*set_gpio)(struct dvb_frontend *fe, u8 gpio, u8 dir, u8 value,
112 struct dvb_frontend *stv090x_attach(struct stv090x_config *config,
118 static inline struct dvb_frontend *stv090x_attach(const struct stv090x_config *config, in stv090x_attach()