diff options
author | Antti Palosaari <crope@iki.fi> | 2015-04-16 18:28:39 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-06-06 12:19:47 +0200 |
commit | b561baec11a49b557530736c2a7604a0232f281b (patch) | |
tree | 58cf6207ffc9c94dac4bb63106fb52e852fc68bc /drivers/media/dvb-frontends/a8293.h | |
parent | [media] tda10071: implement I2C client bindings (diff) | |
download | linux-b561baec11a49b557530736c2a7604a0232f281b.tar.xz linux-b561baec11a49b557530736c2a7604a0232f281b.zip |
[media] a8293: implement I2C client bindings
Implement I2C client bindings.
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/dvb-frontends/a8293.h')
-rw-r--r-- | drivers/media/dvb-frontends/a8293.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/media/dvb-frontends/a8293.h b/drivers/media/dvb-frontends/a8293.h index 5f0411939ffc..aff36538f582 100644 --- a/drivers/media/dvb-frontends/a8293.h +++ b/drivers/media/dvb-frontends/a8293.h @@ -21,8 +21,23 @@ #ifndef A8293_H #define A8293_H +#include "dvb_frontend.h" #include <linux/kconfig.h> +/* + * I2C address + * 0x08, 0x09, 0x0a, 0x0b + */ + +/** + * struct a8293_platform_data - Platform data for the a8293 driver + * @dvb_frontend: DVB frontend. + */ +struct a8293_platform_data { + struct dvb_frontend *dvb_frontend; +}; + + struct a8293_config { u8 i2c_addr; }; |