diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2006-11-19 20:58:19 -0500 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2006-11-19 20:58:19 -0500 |
commit | 6ee36831242fc0257295617cf8b7de7d41c99e54 (patch) | |
tree | d210505eb43aa605d988d14bc549d072ef29c46b /linux/drivers/media/dvb/frontends/lgh06xf.h | |
parent | 17f326133bb934374337530203b3ae0013c5ed28 (diff) | |
download | mediapointer-dvb-s2-6ee36831242fc0257295617cf8b7de7d41c99e54.tar.gz mediapointer-dvb-s2-6ee36831242fc0257295617cf8b7de7d41c99e54.tar.bz2 |
lgh06xf: fix compiler error when not selected
From: Michael Krufky <mkrufky@linuxtv.org>
fix build error:
lgh06xf.h:29: error: syntax error before '{' token
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/dvb/frontends/lgh06xf.h')
-rw-r--r-- | linux/drivers/media/dvb/frontends/lgh06xf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/frontends/lgh06xf.h b/linux/drivers/media/dvb/frontends/lgh06xf.h index 41c41fc59..510b4bedf 100644 --- a/linux/drivers/media/dvb/frontends/lgh06xf.h +++ b/linux/drivers/media/dvb/frontends/lgh06xf.h @@ -25,7 +25,7 @@ extern struct dvb_frontend* lgh06xf_attach(struct dvb_frontend* fe, struct i2c_adapter *i2c); #else static inline struct dvb_frontend* lgh06xf_attach(struct dvb_frontend* fe, - struct i2c_adapter *i2c); + struct i2c_adapter *i2c) { printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __FUNCTION__); return NULL; |