1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 NxtWave Communications - NXT6000 demodulator driver
13 #include <linux/dvb/frontend.h>
17 /* the demodulator's i2c address */
20 /* should clock inversion be used? */
24 #if IS_REACHABLE(CONFIG_DVB_NXT6000)
25 extern struct dvb_frontend* nxt6000_attach(const struct nxt6000_config* config,
26 struct i2c_adapter* i2c);
28 static inline struct dvb_frontend* nxt6000_attach(const struct nxt6000_config* config,
29 struct i2c_adapter* i2c)
31 printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
34 #endif // CONFIG_DVB_NXT6000