2019-05-20 10:19:02 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2007-10-22 03:48:48 +04:00
|
|
|
/*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __TDA9887_H__
|
|
|
|
#define __TDA9887_H__
|
|
|
|
|
2007-12-17 02:11:46 +03:00
|
|
|
#include <linux/i2c.h>
|
2017-12-28 21:03:51 +03:00
|
|
|
#include <media/dvb_frontend.h>
|
2007-10-22 03:48:48 +04:00
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------ */
|
2015-02-18 20:12:42 +03:00
|
|
|
#if IS_REACHABLE(CONFIG_MEDIA_TUNER_TDA9887)
|
2007-12-17 02:11:46 +03:00
|
|
|
extern struct dvb_frontend *tda9887_attach(struct dvb_frontend *fe,
|
|
|
|
struct i2c_adapter *i2c_adap,
|
|
|
|
u8 i2c_addr);
|
2007-10-22 03:48:48 +04:00
|
|
|
#else
|
2007-12-17 02:11:46 +03:00
|
|
|
static inline struct dvb_frontend *tda9887_attach(struct dvb_frontend *fe,
|
|
|
|
struct i2c_adapter *i2c_adap,
|
|
|
|
u8 i2c_addr)
|
2007-10-22 03:48:48 +04:00
|
|
|
{
|
2008-04-09 06:20:00 +04:00
|
|
|
printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
|
2007-12-17 02:11:46 +03:00
|
|
|
return NULL;
|
2007-10-22 03:48:48 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __TDA9887_H__ */
|