blob: 570a4b1d07d6565bc81a9d856d3dde904cc82dbd [file] [log] [blame]
Thomas Gleixner74ba9202019-05-20 09:19:02 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Igor M. Liplianine4aab642008-09-23 15:43:57 -03002 /*
3 Driver for ST stb6000 DVBS Silicon tuner
4
5 Copyright (C) 2008 Igor M. Liplianin (liplianin@me.by)
6
Igor M. Liplianine4aab642008-09-23 15:43:57 -03007
8 */
9
10#ifndef __DVB_STB6000_H__
11#define __DVB_STB6000_H__
12
13#include <linux/i2c.h>
Mauro Carvalho Chehabfada1932017-12-28 13:03:51 -050014#include <media/dvb_frontend.h>
Igor M. Liplianine4aab642008-09-23 15:43:57 -030015
Mauro Carvalho Chehabbe9b53c2017-11-29 14:02:22 -050016#if IS_REACHABLE(CONFIG_DVB_STB6000)
Igor M. Liplianine4aab642008-09-23 15:43:57 -030017/**
18 * Attach a stb6000 tuner to the supplied frontend structure.
19 *
Mauro Carvalho Chehabb95b0c92017-11-29 12:39:19 -050020 * @fe: Frontend to attach to.
21 * @addr: i2c address of the tuner.
22 * @i2c: i2c adapter to use.
23 *
24 * return: FE pointer on success, NULL on failure.
Igor M. Liplianine4aab642008-09-23 15:43:57 -030025 */
Igor M. Liplianine4aab642008-09-23 15:43:57 -030026extern struct dvb_frontend *stb6000_attach(struct dvb_frontend *fe, int addr,
27 struct i2c_adapter *i2c);
28#else
29static inline struct dvb_frontend *stb6000_attach(struct dvb_frontend *fe,
30 int addr,
31 struct i2c_adapter *i2c)
32{
33 printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
34 return NULL;
35}
36#endif /* CONFIG_DVB_STB6000 */
37
38#endif /* __DVB_STB6000_H__ */