···282282 int (*get_state)(struct dvb_frontend *fe, enum tuner_param param, struct tuner_state *state);283283};284284285285+/**286286+ * struct analog_demod_info - Information struct for analog TV part of the demod287287+ *288288+ * @name: Name of the analog TV demodulator289289+ */285290struct analog_demod_info {286291 char *name;287292};288293294294+/**295295+ * struct analog_demod_ops - Demodulation information and callbacks for296296+ * analog TV and radio297297+ *298298+ * @info: pointer to struct analog_demod_info299299+ * @set_params: callback function used to inform the demod to set the300300+ * demodulator parameters needed to decode an analog or301301+ * radio channel. The properties are passed via302302+ * struct @analog_params;.303303+ * @has_signal: returns 0xffff if has signal, or 0 if it doesn't.304304+ * @get_afc: Used only by analog TV core. Reports the frequency305305+ * drift due to AFC.306306+ * @tuner_status: callback function that returns tuner status bits, e. g.307307+ * TUNER_STATUS_LOCKED and TUNER_STATUS_STEREO.308308+ * @standby: set the tuner to standby mode.309309+ * @release: callback function called when frontend is dettached.310310+ * drivers should free any allocated memory.311311+ * @i2c_gate_ctrl: controls the I2C gate. Newer drivers should use I2C312312+ * mux support instead.313313+ * @set_config: callback function used to send some tuner-specific314314+ * parameters.315315+ */289316struct analog_demod_ops {290317291318 struct analog_demod_info info;