This source file includes following definitions.
- lnbh25_attach
1
2
3
4
5
6
7
8
9
10
11
12 #ifndef LNBH25_H
13 #define LNBH25_H
14
15 #include <linux/i2c.h>
16 #include <linux/dvb/frontend.h>
17
18
19 #define LNBH25_TEN 0x01
20
21 #define LNBH25_LPM 0x02
22
23 #define LNBH25_EXTM 0x04
24
25 struct lnbh25_config {
26 u8 i2c_address;
27 u8 data2_config;
28 };
29
30 #if IS_REACHABLE(CONFIG_DVB_LNBH25)
31 struct dvb_frontend *lnbh25_attach(
32 struct dvb_frontend *fe,
33 struct lnbh25_config *cfg,
34 struct i2c_adapter *i2c);
35 #else
36 static inline struct dvb_frontend *lnbh25_attach(
37 struct dvb_frontend *fe,
38 struct lnbh25_config *cfg,
39 struct i2c_adapter *i2c)
40 {
41 printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
42 return NULL;
43 }
44 #endif
45
46 #endif