| Linux kernel & device driver programming |
| [ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] |
1 /* 1
2 Legend Silicon LGS-8GL5 DMB-TH OFDM demodu
3
4 Copyright (C) 2008 Sirius International (H
5 Timothy Lee <timothy.lee@siriushk.com>
6
7 This program is free software; you can red
8 it under the terms of the GNU General Publ
9 the Free Software Foundation; either versi
10 (at your option) any later version.
11
12 This program is distributed in the hope th
13 but WITHOUT ANY WARRANTY; without even the
14 MERCHANTABILITY or FITNESS FOR A PARTICULA
15 GNU General Public License for more detail
16
17 You should have received a copy of the GNU
18 along with this program; if not, write to
19 Foundation, Inc., 675 Mass Ave, Cambridge,
20
21 */
22
23 #ifndef LGS8GL5_H
24 #define LGS8GL5_H
25
26 #include <linux/dvb/frontend.h>
27
28 struct lgs8gl5_config {
29 /* the demodulator's i2c address */
30 u8 demod_address;
31 };
32
33 #if defined(CONFIG_DVB_LGS8GL5) || \
34 (defined(CONFIG_DVB_LGS8GL5_MODULE) &&
35 extern struct dvb_frontend *lgs8gl5_attach(
36 const struct lgs8gl5_config *config, s
37 #else
38 static inline struct dvb_frontend *lgs8gl5_att
39 const struct lgs8gl5_config *config, s
40 printk(KERN_WARNING "%s: driver disabl
41 return NULL;
42 }
43 #endif /* CONFIG_DVB_LGS8GL5 */
44
45 #endif /* LGS8GL5_H */
46
| This page was automatically generated by the LXR engine. |