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