2019-05-20 15:19:02 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2007-08-28 08:23:40 +08:00
|
|
|
/*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __TEA5761_H__
|
|
|
|
#define __TEA5761_H__
|
|
|
|
|
|
|
|
#include <linux/i2c.h>
|
2017-12-29 02:03:51 +08:00
|
|
|
#include <media/dvb_frontend.h>
|
2007-08-28 08:23:40 +08:00
|
|
|
|
2015-02-19 01:12:42 +08:00
|
|
|
#if IS_REACHABLE(CONFIG_MEDIA_TUNER_TEA5761)
|
2007-08-28 08:23:40 +08:00
|
|
|
extern int tea5761_autodetection(struct i2c_adapter* i2c_adap, u8 i2c_addr);
|
2007-08-28 08:59:35 +08:00
|
|
|
|
2007-08-28 08:23:40 +08:00
|
|
|
extern struct dvb_frontend *tea5761_attach(struct dvb_frontend *fe,
|
|
|
|
struct i2c_adapter* i2c_adap,
|
|
|
|
u8 i2c_addr);
|
2007-08-28 08:59:35 +08:00
|
|
|
#else
|
|
|
|
static inline int tea5761_autodetection(struct i2c_adapter* i2c_adap,
|
|
|
|
u8 i2c_addr)
|
|
|
|
{
|
|
|
|
printk(KERN_INFO "%s: not probed - driver disabled by Kconfig\n",
|
2008-04-09 10:20:00 +08:00
|
|
|
__func__);
|
2007-08-28 08:59:35 +08:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct dvb_frontend *tea5761_attach(struct dvb_frontend *fe,
|
|
|
|
struct i2c_adapter* i2c_adap,
|
|
|
|
u8 i2c_addr)
|
|
|
|
{
|
2008-04-09 10:20:00 +08:00
|
|
|
printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
|
2007-08-28 08:59:35 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#endif
|
2007-08-28 08:23:40 +08:00
|
|
|
|
|
|
|
#endif /* __TEA5761_H__ */
|