This source file includes following definitions.
- stv6111_attach
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 #ifndef _STV6111_H_
18 #define _STV6111_H_
19
20 #if IS_REACHABLE(CONFIG_DVB_STV6111)
21
22 struct dvb_frontend *stv6111_attach(struct dvb_frontend *fe,
23 struct i2c_adapter *i2c, u8 adr);
24
25 #else
26
27 static inline struct dvb_frontend *stv6111_attach(struct dvb_frontend *fe,
28 struct i2c_adapter *i2c,
29 u8 adr)
30 {
31 pr_warn("%s: Driver disabled by Kconfig\n", __func__);
32 return NULL;
33 }
34
35 #endif
36
37 #endif