diff options
author | Akihiro Tsukada <tskd08@gmail.com> | 2018-04-08 19:21:34 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2018-05-05 12:41:12 +0200 |
commit | eaa51fee29e7e0fb39181d6b69ac92aff41f4552 (patch) | |
tree | c090221d04995a7c723e09d84b36bf810ec9ca3a /drivers/media/dvb-frontends/dvb-pll.h | |
parent | media: v4l2-dev: use pr_foo() for printing messages (diff) | |
download | linux-eaa51fee29e7e0fb39181d6b69ac92aff41f4552.tar.xz linux-eaa51fee29e7e0fb39181d6b69ac92aff41f4552.zip |
media: dvb-frontends/dvb-pll: add i2c driver support
registers the module as an i2c driver,
but keeps dvb_pll_attach() untouched for compatibility.
Signed-off-by: Akihiro Tsukada <tskd08@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'drivers/media/dvb-frontends/dvb-pll.h')
-rw-r--r-- | drivers/media/dvb-frontends/dvb-pll.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/media/dvb-frontends/dvb-pll.h b/drivers/media/dvb-frontends/dvb-pll.h index ca885e71d2f0..101537ae4ef5 100644 --- a/drivers/media/dvb-frontends/dvb-pll.h +++ b/drivers/media/dvb-frontends/dvb-pll.h @@ -30,6 +30,10 @@ #define DVB_PLL_TDEE4 18 #define DVB_PLL_THOMSON_DTT7520X 19 +struct dvb_pll_config { + struct dvb_frontend *fe; +}; + #if IS_REACHABLE(CONFIG_DVB_PLL) /** * Attach a dvb-pll to the supplied frontend structure. |