1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 driver for LSI L64781 COFDM demodulator
5 Copyright (C) 2001 Holger Waechtler for Convergence Integrated Media GmbH
6 Marko Kohtala <marko.kohtala@luukku.com>
14 #include <linux/dvb/frontend.h>
18 /* the demodulator's i2c address */
22 #if IS_REACHABLE(CONFIG_DVB_L64781)
23 extern struct dvb_frontend
* l64781_attach(const struct l64781_config
* config
,
24 struct i2c_adapter
* i2c
);
26 static inline struct dvb_frontend
* l64781_attach(const struct l64781_config
* config
,
27 struct i2c_adapter
* i2c
)
29 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);
32 #endif // CONFIG_DVB_L64781