1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Support for the Broadcom BCM3510 ATSC demodulator (1st generation Air2PC)
5 * Copyright (C) 2001-5, B2C2 inc.
12 #include <linux/dvb/frontend.h>
13 #include <linux/firmware.h>
17 /* the demodulator's i2c address */
20 /* request firmware for device */
21 int (*request_firmware)(struct dvb_frontend* fe, const struct firmware **fw, char* name);
24 #if IS_REACHABLE(CONFIG_DVB_BCM3510)
25 extern struct dvb_frontend* bcm3510_attach(const struct bcm3510_config* config,
26 struct i2c_adapter* i2c);
28 static inline struct dvb_frontend* bcm3510_attach(const struct bcm3510_config* config,
29 struct i2c_adapter* i2c)
31 printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
34 #endif // CONFIG_DVB_BCM3510