2019-05-20 07:19:02 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2007-08-28 00:23:40 +00:00
|
|
|
/*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __TEA5761_H__
|
|
|
|
#define __TEA5761_H__
|
|
|
|
|
|
|
|
#include <linux/i2c.h>
|
2017-12-28 18:03:51 +00:00
|
|
|
#include <media/dvb_frontend.h>
|
2007-08-28 00:23:40 +00:00
|
|
|
|
2015-02-18 17:12:42 +00:00
|
|
|
#if IS_REACHABLE(CONFIG_MEDIA_TUNER_TEA5761)
|
2007-08-28 00:23:40 +00:00
|
|
|
extern int tea5761_autodetection(struct i2c_adapter* i2c_adap, u8 i2c_addr);
|
2007-08-28 00:59:35 +00:00
|
|
|
|
2007-08-28 00:23:40 +00:00
|
|
|
extern struct dvb_frontend *tea5761_attach(struct dvb_frontend *fe,
|
|
|
|
struct i2c_adapter* i2c_adap,
|
|
|
|
u8 i2c_addr);
|
2007-08-28 00:59:35 +00: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 02:20:00 +00:00
|
|
|
__func__);
|
2007-08-28 00:59:35 +00: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 02:20:00 +00:00
|
|
|
printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
|
2007-08-28 00:59:35 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#endif
|
2007-08-28 00:23:40 +00:00
|
|
|
|
|
|
|
#endif /* __TEA5761_H__ */
|