This source file includes following definitions.
- stb6000_attach
1
2
3
4
5
6
7
8
9
10 #ifndef __DVB_STB6000_H__
11 #define __DVB_STB6000_H__
12
13 #include <linux/i2c.h>
14 #include <media/dvb_frontend.h>
15
16 #if IS_REACHABLE(CONFIG_DVB_STB6000)
17
18
19
20
21
22
23
24
25
26 extern struct dvb_frontend *stb6000_attach(struct dvb_frontend *fe, int addr,
27 struct i2c_adapter *i2c);
28 #else
29 static 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
37
38 #endif