GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / media / dvb / frontends / dib3000.h
blobfa08a7c885bc6ff2bca8ae222ef5c49f0f448a0d
1 /*
2 * public header file of the frontend drivers for mobile DVB-T demodulators
3 * DiBcom 3000M-B and DiBcom 3000P/M-C (http://www.dibcom.fr/)
5 * Copyright (C) 2004-5 Patrick Boettcher (patrick.boettcher@desy.de)
7 * based on GPL code from DibCom, which has
9 * Copyright (C) 2004 Amaury Demol for DiBcom (ademol@dibcom.fr)
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation, version 2.
15 * Acknowledgements
17 * Amaury Demol (ademol@dibcom.fr) from DiBcom for providing specs and driver
18 * sources, on which this driver (and the dvb-dibusb) are based.
20 * see Documentation/dvb/README.dibusb for more information
24 #ifndef DIB3000_H
25 #define DIB3000_H
27 #include <linux/dvb/frontend.h>
29 struct dib3000_config
31 /* the demodulator's i2c address */
32 u8 demod_address;
35 struct dib_fe_xfer_ops
37 /* pid and transfer handling is done in the demodulator */
38 int (*pid_parse)(struct dvb_frontend *fe, int onoff);
39 int (*fifo_ctrl)(struct dvb_frontend *fe, int onoff);
40 int (*pid_ctrl)(struct dvb_frontend *fe, int index, int pid, int onoff);
41 int (*tuner_pass_ctrl)(struct dvb_frontend *fe, int onoff, u8 pll_ctrl);
44 #if defined(CONFIG_DVB_DIB3000MB) || (defined(CONFIG_DVB_DIB3000MB_MODULE) && \
45 defined(MODULE))
46 extern struct dvb_frontend* dib3000mb_attach(const struct dib3000_config* config,
47 struct i2c_adapter* i2c, struct dib_fe_xfer_ops *xfer_ops);
48 #else
49 static inline struct dvb_frontend* dib3000mb_attach(const struct dib3000_config* config,
50 struct i2c_adapter* i2c, struct dib_fe_xfer_ops *xfer_ops)
52 printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
53 return NULL;
55 #endif // CONFIG_DVB_DIB3000MB
57 #endif // DIB3000_H