2019-05-20 15:19:02 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2007-08-28 08:23:08 +08:00
|
|
|
/*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __MT20XX_H__
|
|
|
|
#define __MT20XX_H__
|
|
|
|
|
|
|
|
#include <linux/i2c.h>
|
2017-12-29 02:03:51 +08:00
|
|
|
#include <media/dvb_frontend.h>
|
2007-08-28 08:23:08 +08:00
|
|
|
|
2015-02-19 01:12:42 +08:00
|
|
|
#if IS_REACHABLE(CONFIG_MEDIA_TUNER_MT20XX)
|
2007-08-28 08:23:08 +08:00
|
|
|
extern struct dvb_frontend *microtune_attach(struct dvb_frontend *fe,
|
|
|
|
struct i2c_adapter* i2c_adap,
|
|
|
|
u8 i2c_addr);
|
2007-08-28 08:59:35 +08:00
|
|
|
#else
|
|
|
|
static inline struct dvb_frontend *microtune_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:08 +08:00
|
|
|
|
|
|
|
#endif /* __MT20XX_H__ */
|