1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 Conexant cx24117/cx24132 - Dual DVBS/S2 Satellite demod/tuner driver
6 (based on cx24116.h by Steven Toth)
13 #include <linux/dvb/frontend.h>
15 struct cx24117_config {
16 /* the demodulator's i2c address */
20 #if IS_REACHABLE(CONFIG_DVB_CX24117)
21 extern struct dvb_frontend *cx24117_attach(
22 const struct cx24117_config *config,
23 struct i2c_adapter *i2c);
25 static inline struct dvb_frontend *cx24117_attach(
26 const struct cx24117_config *config,
27 struct i2c_adapter *i2c)
29 dev_warn(&i2c->dev, "%s: driver disabled by Kconfig\n", __func__);
34 #endif /* CX24117_H */