1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 Montage Technology DS3000 - DVBS/S2 Demodulator driver
6 Copyright (C) 2009-2012 TurboSight.com
13 #include <linux/dvb/frontend.h>
15 struct ds3000_config {
16 /* the demodulator's i2c address */
19 /* Set device param to start dma */
20 int (*set_ts_params)(struct dvb_frontend *fe, int is_punctured);
21 /* Hook for Lock LED */
22 void (*set_lock_led)(struct dvb_frontend *fe, int offon);
25 #if IS_REACHABLE(CONFIG_DVB_DS3000)
26 extern struct dvb_frontend *ds3000_attach(const struct ds3000_config *config,
27 struct i2c_adapter *i2c);
30 struct dvb_frontend *ds3000_attach(const struct ds3000_config *config,
31 struct i2c_adapter *i2c)
33 printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
36 #endif /* CONFIG_DVB_DS3000 */