aboutsummaryrefslogtreecommitdiff
path: root/drivers/media/dvb-frontends/cx24117.h
diff options
context:
space:
mode:
authorLuis Alves <ljalvs@gmail.com>2013-10-03 08:33:47 -0300
committerMauro Carvalho Chehab <m.chehab@samsung.com>2013-10-03 07:40:12 -0300
commitd10e8280c4c2513d3e7350c27d8e6f0fa03a5f71 (patch)
tree71416e674be5b5c3490fc77885effd07f8dc776c /drivers/media/dvb-frontends/cx24117.h
parente6001482d49ffe1554f55c47a4ed903e86fe69a5 (diff)
[media] cx24117: use hybrid_tuner_request/release_state to share state between multiple instances
...and remove the frontend pointer param from cx24117_attach() Signed-off-by: Luis Alves <ljalvs@gmail.com> Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media/dvb-frontends/cx24117.h')
-rw-r--r--drivers/media/dvb-frontends/cx24117.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/dvb-frontends/cx24117.h b/drivers/media/dvb-frontends/cx24117.h
index 5bc8f1119275..4e59e9574fa7 100644
--- a/drivers/media/dvb-frontends/cx24117.h
+++ b/drivers/media/dvb-frontends/cx24117.h
@@ -33,11 +33,11 @@ struct cx24117_config {
#if IS_ENABLED(CONFIG_DVB_CX24117)
extern struct dvb_frontend *cx24117_attach(
const struct cx24117_config *config,
- struct i2c_adapter *i2c, struct dvb_frontend *fe);
+ struct i2c_adapter *i2c);
#else
static inline struct dvb_frontend *cx24117_attach(
const struct cx24117_config *config,
- struct i2c_adapter *i2c, struct dvb_frontend *fe)
+ struct i2c_adapter *i2c)
{
dev_warn(&i2c->dev, "%s: driver disabled by Kconfig\n", __func__);
return NULL;