summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Martinez Canillas <javier@osg.samsung.com>2015-09-13 22:45:21 (GMT)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2015-10-22 17:48:22 (GMT)
commita9c4e5cfebc44e6caa6b9299af5603f5c2da0c33 (patch)
tree2a87fcbe2a05c7e296e3aabd16c3bca1f894a109
parentebdd4b7e6a0dd86736eeb6b9e60b361ef64ccc30 (diff)
downloadlinux-a9c4e5cfebc44e6caa6b9299af5603f5c2da0c33.tar.xz
[media] lnbh25: Fix lnbh25_attach() function return type
If CONFIG_DVB_LNBH25 is disabled, a stub static inline function is defined that just prints a warning about the driver being disabled but the function return type was wrong which caused a build error. Fixes: e025273b86fb ("[media] lnbh25: LNBH25 SEC controller driver") Reported-by: Fengguang Wu <fengguang.wu@intel.com> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
-rw-r--r--drivers/media/dvb-frontends/lnbh25.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/lnbh25.h b/drivers/media/dvb-frontends/lnbh25.h
index 69f30e2..1f329ef 100644
--- a/drivers/media/dvb-frontends/lnbh25.h
+++ b/drivers/media/dvb-frontends/lnbh25.h
@@ -43,7 +43,7 @@ struct dvb_frontend *lnbh25_attach(
struct lnbh25_config *cfg,
struct i2c_adapter *i2c);
#else
-static inline dvb_frontend *lnbh25_attach(
+static inline struct dvb_frontend *lnbh25_attach(
struct dvb_frontend *fe,
struct lnbh25_config *cfg,
struct i2c_adapter *i2c)