Adding support for MOXA ART SoC. Testing port of linux-2.6.32.60-moxart.
[linux-3.6.7-moxart.git] / drivers / media / common / tuners / fc0011.h
blob0ee581f122d2d696f123095fe78878cf8cb43733
1 #ifndef LINUX_FC0011_H_
2 #define LINUX_FC0011_H_
4 #include "dvb_frontend.h"
7 /** struct fc0011_config - fc0011 hardware config
9 * @i2c_address: I2C bus address.
11 struct fc0011_config {
12 u8 i2c_address;
15 /** enum fc0011_fe_callback_commands - Frontend callbacks
17 * @FC0011_FE_CALLBACK_POWER: Power on tuner hardware.
18 * @FC0011_FE_CALLBACK_RESET: Request a tuner reset.
20 enum fc0011_fe_callback_commands {
21 FC0011_FE_CALLBACK_POWER,
22 FC0011_FE_CALLBACK_RESET,
25 #if defined(CONFIG_MEDIA_TUNER_FC0011) ||\
26 defined(CONFIG_MEDIA_TUNER_FC0011_MODULE)
27 struct dvb_frontend *fc0011_attach(struct dvb_frontend *fe,
28 struct i2c_adapter *i2c,
29 const struct fc0011_config *config);
30 #else
31 static inline
32 struct dvb_frontend *fc0011_attach(struct dvb_frontend *fe,
33 struct i2c_adapter *i2c,
34 const struct fc0011_config *config)
36 dev_err(&i2c->dev, "fc0011 driver disabled in Kconfig\n");
37 return NULL;
39 #endif
41 #endif /* LINUX_FC0011_H_ */