1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 Driver for Philips tda10086 DVBS Frontend
5 (c) 2006 Andrew de Quincey
13 #include <linux/dvb/frontend.h>
14 #include <linux/firmware.h>
21 struct tda10086_config
23 /* the demodulator's i2c address */
26 /* does the "inversion" need inverted? */
29 /* do we need the diseqc signal with carrier? */
32 /* frequency of the reference xtal */
33 enum tda10086_xtal xtal_freq
;
36 #if IS_REACHABLE(CONFIG_DVB_TDA10086)
37 extern struct dvb_frontend
* tda10086_attach(const struct tda10086_config
* config
,
38 struct i2c_adapter
* i2c
);
40 static inline struct dvb_frontend
* tda10086_attach(const struct tda10086_config
* config
,
41 struct i2c_adapter
* i2c
)
43 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);
46 #endif /* CONFIG_DVB_TDA10086 */
48 #endif /* TDA10086_H */