1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 Fujitsu MB86A16 DVB-S/DSS DC Receiver driver
12 #include <linux/dvb/frontend.h>
13 #include <media/dvb_frontend.h>
16 struct mb86a16_config {
19 int (*set_voltage)(struct dvb_frontend *fe,
20 enum fe_sec_voltage voltage);
25 #if IS_REACHABLE(CONFIG_DVB_MB86A16)
27 extern struct dvb_frontend *mb86a16_attach(const struct mb86a16_config *config,
28 struct i2c_adapter *i2c_adap);
32 static inline struct dvb_frontend *mb86a16_attach(const struct mb86a16_config *config,
33 struct i2c_adapter *i2c_adap)
35 printk(KERN_WARNING "%s: Driver disabled by Kconfig\n", __func__);
39 #endif /* CONFIG_DVB_MB86A16 */
41 #endif /* __MB86A16_H */