Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef _TDA18271C2DD_H_
0003 #define _TDA18271C2DD_H_
0004 
0005 #if IS_REACHABLE(CONFIG_DVB_TDA18271C2DD)
0006 struct dvb_frontend *tda18271c2dd_attach(struct dvb_frontend *fe,
0007                      struct i2c_adapter *i2c, u8 adr);
0008 #else
0009 static inline struct dvb_frontend *tda18271c2dd_attach(struct dvb_frontend *fe,
0010                      struct i2c_adapter *i2c, u8 adr)
0011 {
0012     printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
0013     return NULL;
0014 }
0015 #endif
0016 
0017 #endif