1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 Conexant CX22700 DVB OFDM demodulator driver
5 Copyright (C) 2001-2002 Convergence Integrated Media GmbH
6 Holger Waechtler <holger@convergence.de>
14 #include <linux/dvb/frontend.h>
18 /* the demodulator's i2c address */
22 #if IS_REACHABLE(CONFIG_DVB_CX22700)
23 extern struct dvb_frontend
* cx22700_attach(const struct cx22700_config
* config
,
24 struct i2c_adapter
* i2c
);
26 static inline struct dvb_frontend
* cx22700_attach(const struct cx22700_config
* config
,
27 struct i2c_adapter
* i2c
)
29 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);
32 #endif // CONFIG_DVB_CX22700