1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Driver for Conexant CX24113/CX24128 Tuner (Satellite)
13 struct cx24113_config {
14 u8 i2c_addr; /* 0x14 or 0x54 */
19 #if IS_REACHABLE(CONFIG_DVB_TUNER_CX24113)
20 extern struct dvb_frontend *cx24113_attach(struct dvb_frontend *,
21 const struct cx24113_config *config, struct i2c_adapter *i2c);
23 extern void cx24113_agc_callback(struct dvb_frontend *fe);
25 static inline struct dvb_frontend *cx24113_attach(struct dvb_frontend *fe,
26 const struct cx24113_config *config, struct i2c_adapter *i2c)
28 printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
32 static inline void cx24113_agc_callback(struct dvb_frontend *fe)
34 printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
38 #endif /* CX24113_H */