Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1249144
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] [media] lnbh25: fix lnbh25_attach inline wrapper |
| Date | 2015-10-16 22:40 +0200 |
| Message-ID | <qkjXb-xH-7@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
The 'static inline' version of lnbh25_attach() has an incorrect
prototype which results in a build error when
CONFIG_DVB_LNBH25 is disabled:
In file included from /git/arm-soc/drivers/media/pci/netup_unidvb/netup_unidvb_core.c:36:0:
/git/arm-soc/drivers/media/dvb-frontends/lnbh25.h:46:86: error: unknown type name 'dvb_frontend'
This changes the code to have the correct prototype.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: e025273b86fb ("[media] lnbh25: LNBH25 SEC controller driver")
---
Found on ARM randconfig builds
diff --git a/drivers/media/dvb-frontends/lnbh25.h b/drivers/media/dvb-frontends/lnbh25.h
index 69f30e21f6b3..1f329ef05acc 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)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] [media] lnbh25: fix lnbh25_attach inline wrapper Arnd Bergmann <arnd@arndb.de> - 2015-10-16 22:40 +0200
Re: [PATCH] [media] lnbh25: fix lnbh25_attach inline wrapper Javier Martinez Canillas <javier@dowhile0.org> - 2015-10-16 23:50 +0200
Re: [PATCH] [media] lnbh25: fix lnbh25_attach inline wrapper Arnd Bergmann <arnd@arndb.de> - 2015-10-16 23:50 +0200
Re: [PATCH] [media] lnbh25: fix lnbh25_attach inline wrapper Javier Martinez Canillas <javier@dowhile0.org> - 2015-10-17 00:00 +0200
csiph-web