1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 Driver for Grundig 29504-491, a Philips TDA8083 based QPSK Frontend
5 Copyright (C) 2001 Convergence Integrated Media GmbH
9 adoption to the new DVB frontend API and diagnostic ioctl's
18 #include <linux/dvb/frontend.h>
22 /* the demodulator's i2c address */
26 #if IS_REACHABLE(CONFIG_DVB_TDA8083)
27 extern struct dvb_frontend *tda8083_attach(const struct tda8083_config *config,
28 struct i2c_adapter *i2c);
30 static inline struct dvb_frontend *tda8083_attach(const struct tda8083_config *config,
31 struct i2c_adapter *i2c)
33 printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
36 #endif // CONFIG_DVB_TDA8083