diff options
author | Michael Büsch <m@bues.ch> | 2012-04-02 11:14:32 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-04-09 13:49:32 -0400 |
commit | eea977ed63c16888a87acd12958966638ac4fb3a (patch) | |
tree | 151c4fd38b2812d6afcfd677f02ecf304cc5c2db /drivers/media/common/tuners/fc0011.h | |
parent | 6ec12988c022bee4af28a5d3941a01f9e78a96e9 (diff) |
[media] Add fc0011 tuner driver
This adds support for the Fitipower fc0011 DVB-t tuner.
Signed-off-by: Michael Buesch <m@bues.ch>
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/common/tuners/fc0011.h')
-rw-r--r-- | drivers/media/common/tuners/fc0011.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/drivers/media/common/tuners/fc0011.h b/drivers/media/common/tuners/fc0011.h new file mode 100644 index 000000000000..0ee581f122d2 --- /dev/null +++ b/drivers/media/common/tuners/fc0011.h | |||
@@ -0,0 +1,41 @@ | |||
1 | #ifndef LINUX_FC0011_H_ | ||
2 | #define LINUX_FC0011_H_ | ||
3 | |||
4 | #include "dvb_frontend.h" | ||
5 | |||
6 | |||
7 | /** struct fc0011_config - fc0011 hardware config | ||
8 | * | ||
9 | * @i2c_address: I2C bus address. | ||
10 | */ | ||
11 | struct fc0011_config { | ||
12 | u8 i2c_address; | ||
13 | }; | ||
14 | |||
15 | /** enum fc0011_fe_callback_commands - Frontend callbacks | ||
16 | * | ||
17 | * @FC0011_FE_CALLBACK_POWER: Power on tuner hardware. | ||
18 | * @FC0011_FE_CALLBACK_RESET: Request a tuner reset. | ||
19 | */ | ||
20 | enum fc0011_fe_callback_commands { | ||
21 | FC0011_FE_CALLBACK_POWER, | ||
22 | FC0011_FE_CALLBACK_RESET, | ||
23 | }; | ||
24 | |||
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) | ||
35 | { | ||
36 | dev_err(&i2c->dev, "fc0011 driver disabled in Kconfig\n"); | ||
37 | return NULL; | ||
38 | } | ||
39 | #endif | ||
40 | |||
41 | #endif /* LINUX_FC0011_H_ */ | ||