diff options
| author | Igor M. Liplianin <[email protected]> | 2008-09-12 14:49:06 -0300 |
|---|---|---|
| committer | Mauro Carvalho Chehab <[email protected]> | 2008-10-12 09:37:05 -0200 |
| commit | e6f9ec86575358309cf9d4b2643df2f3b1f6f9fa (patch) | |
| tree | 6808dc8d0fc78bf2f41c0dd8837664c02d64eeca | |
| parent | bfbf2dae30ed75bceccc6a88d2d9368694d6bf40 (diff) | |
V4L/DVB (9005): Bug fix: ioctl FE_SET_PROPERTY/FE_GET_PROPERTY always return error
Bug fix: ioctl FE_SET_PROPERTY/FE_GET_PROPERTY always return error
Signed-off-by: Igor M. Liplianin <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
| -rw-r--r-- | drivers/media/dvb/dvb-core/dvb_frontend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/dvb-core/dvb_frontend.c b/drivers/media/dvb/dvb-core/dvb_frontend.c index 8bc3c0842b3d..161ebcf9258a 100644 --- a/drivers/media/dvb/dvb-core/dvb_frontend.c +++ b/drivers/media/dvb/dvb-core/dvb_frontend.c @@ -1311,7 +1311,7 @@ static int dvb_frontend_ioctl_properties(struct inode *inode, struct file *file, { struct dvb_device *dvbdev = file->private_data; struct dvb_frontend *fe = dvbdev->priv; - int err = -EOPNOTSUPP; + int err = 0; struct dtv_properties *tvps = NULL; struct dtv_property *tvp = NULL; |