2019-05-20 15:19:02 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2009-12-03 08:57:10 +08:00
|
|
|
/*
|
|
|
|
Fujitsu MB86A16 DVB-S/DSS DC Receiver driver
|
|
|
|
|
2009-12-15 20:04:59 +08:00
|
|
|
Copyright (C) Manu Abraham (abraham.manu@gmail.com)
|
2009-12-03 08:57:10 +08:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __MB86A16_H
|
|
|
|
#define __MB86A16_H
|
|
|
|
|
|
|
|
#include <linux/dvb/frontend.h>
|
2017-12-29 02:03:51 +08:00
|
|
|
#include <media/dvb_frontend.h>
|
2009-12-03 08:57:10 +08:00
|
|
|
|
|
|
|
|
|
|
|
struct mb86a16_config {
|
|
|
|
u8 demod_address;
|
|
|
|
|
2015-06-08 01:53:52 +08:00
|
|
|
int (*set_voltage)(struct dvb_frontend *fe,
|
|
|
|
enum fe_sec_voltage voltage);
|
2009-12-03 08:57:10 +08:00
|
|
|
};
|
|
|
|
|
2009-12-15 20:01:27 +08:00
|
|
|
|
|
|
|
|
2015-02-19 01:12:42 +08:00
|
|
|
#if IS_REACHABLE(CONFIG_DVB_MB86A16)
|
2009-12-15 20:01:27 +08:00
|
|
|
|
2009-12-03 08:57:10 +08:00
|
|
|
extern struct dvb_frontend *mb86a16_attach(const struct mb86a16_config *config,
|
|
|
|
struct i2c_adapter *i2c_adap);
|
|
|
|
|
2009-12-15 20:01:27 +08:00
|
|
|
#else
|
|
|
|
|
|
|
|
static inline struct dvb_frontend *mb86a16_attach(const struct mb86a16_config *config,
|
|
|
|
struct i2c_adapter *i2c_adap)
|
|
|
|
{
|
|
|
|
printk(KERN_WARNING "%s: Driver disabled by Kconfig\n", __func__);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_DVB_MB86A16 */
|
2009-12-03 08:57:10 +08:00
|
|
|
|
2009-12-15 19:47:21 +08:00
|
|
|
#endif /* __MB86A16_H */
|