瀏覽代碼

[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>
Javier Martinez Canillas 10 年之前
父節點
當前提交
a9c4e5cfeb
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/media/dvb-frontends/lnbh25.h

+ 1 - 1
drivers/media/dvb-frontends/lnbh25.h

@@ -43,7 +43,7 @@ struct dvb_frontend *lnbh25_attach(
 	struct lnbh25_config *cfg,
 	struct lnbh25_config *cfg,
 	struct i2c_adapter *i2c);
 	struct i2c_adapter *i2c);
 #else
 #else
-static inline dvb_frontend *lnbh25_attach(
+static inline struct dvb_frontend *lnbh25_attach(
 	struct dvb_frontend *fe,
 	struct dvb_frontend *fe,
 	struct lnbh25_config *cfg,
 	struct lnbh25_config *cfg,
 	struct i2c_adapter *i2c)
 	struct i2c_adapter *i2c)