Commit 177ffe50 authored by Antti Palosaari's avatar Antti Palosaari Committed by Mauro Carvalho Chehab

[media] dvb_frontend: return -ENOTTY for unimplement IOCTL

Earlier it was returning -EOPNOTSUPP.
Signed-off-by: default avatarAntti Palosaari <crope@iki.fi>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 36bdbc3f
...@@ -1816,7 +1816,7 @@ static int dvb_frontend_ioctl(struct file *file, ...@@ -1816,7 +1816,7 @@ static int dvb_frontend_ioctl(struct file *file,
struct dvb_frontend *fe = dvbdev->priv; struct dvb_frontend *fe = dvbdev->priv;
struct dtv_frontend_properties *c = &fe->dtv_property_cache; struct dtv_frontend_properties *c = &fe->dtv_property_cache;
struct dvb_frontend_private *fepriv = fe->frontend_priv; struct dvb_frontend_private *fepriv = fe->frontend_priv;
int err = -EOPNOTSUPP; int err = -ENOTTY;
dev_dbg(fe->dvb->device, "%s: (%d)\n", __func__, _IOC_NR(cmd)); dev_dbg(fe->dvb->device, "%s: (%d)\n", __func__, _IOC_NR(cmd));
if (fepriv->exit != DVB_FE_NO_EXIT) if (fepriv->exit != DVB_FE_NO_EXIT)
...@@ -1934,7 +1934,7 @@ static int dvb_frontend_ioctl_properties(struct file *file, ...@@ -1934,7 +1934,7 @@ static int dvb_frontend_ioctl_properties(struct file *file,
} }
} else } else
err = -EOPNOTSUPP; err = -ENOTTY;
out: out:
kfree(tvp); kfree(tvp);
...@@ -2067,7 +2067,7 @@ static int dvb_frontend_ioctl_legacy(struct file *file, ...@@ -2067,7 +2067,7 @@ static int dvb_frontend_ioctl_legacy(struct file *file,
struct dvb_frontend *fe = dvbdev->priv; struct dvb_frontend *fe = dvbdev->priv;
struct dvb_frontend_private *fepriv = fe->frontend_priv; struct dvb_frontend_private *fepriv = fe->frontend_priv;
struct dtv_frontend_properties *c = &fe->dtv_property_cache; struct dtv_frontend_properties *c = &fe->dtv_property_cache;
int err = -EOPNOTSUPP; int err = -ENOTTY;
switch (cmd) { switch (cmd) {
case FE_GET_INFO: { case FE_GET_INFO: {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment