diff options
author | Patrick Boettcher <devnull@localhost> | 2005-01-13 15:55:21 +0000 |
---|---|---|
committer | Patrick Boettcher <devnull@localhost> | 2005-01-13 15:55:21 +0000 |
commit | 5e7e4300bdef43bbc9db1f4661e1867a18ab8aff (patch) | |
tree | cd2e8f08a4ddb0e255a39a37342ebce5401f9f21 /linux | |
parent | 443e97baaeee1d2160687375f174b10371fc451d (diff) | |
download | mediapointer-dvb-s2-5e7e4300bdef43bbc9db1f4661e1867a18ab8aff.tar.gz mediapointer-dvb-s2-5e7e4300bdef43bbc9db1f4661e1867a18ab8aff.tar.bz2 |
removed semi-colon from a very wrong place; FE_ENABLE_HIGH_LNB_VOLTAGE kernel oops; thanks to Christophe Massiot
Diffstat (limited to 'linux')
-rw-r--r-- | linux/drivers/media/dvb/dvb-core/dvb_frontend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/dvb-core/dvb_frontend.c b/linux/drivers/media/dvb/dvb-core/dvb_frontend.c index 344e14005..85790c0cf 100644 --- a/linux/drivers/media/dvb/dvb-core/dvb_frontend.c +++ b/linux/drivers/media/dvb/dvb-core/dvb_frontend.c @@ -705,7 +705,7 @@ static int dvb_frontend_ioctl(struct inode *inode, struct file *file, break; case FE_ENABLE_HIGH_LNB_VOLTAGE: - if (fe->ops->enable_high_lnb_voltage); + if (fe->ops->enable_high_lnb_voltage) err = fe->ops->enable_high_lnb_voltage(fe, (int) parg); break; |