提交 a145f64c 编写于 作者: M Mauro Carvalho Chehab

media: dmxdev: fix error code for invalid ioctls

Returning -EINVAL when an ioctl is not implemented is a very
bad idea, as it is hard to distinguish from other error
contitions that an ioctl could lead. Replace it by its
right error code: -ENOTTY.
Signed-off-by: NMauro Carvalho Chehab <mchehab@s-opensource.com>
上级 b9c97c67
...@@ -1160,7 +1160,7 @@ static int dvb_demux_do_ioctl(struct file *file, ...@@ -1160,7 +1160,7 @@ static int dvb_demux_do_ioctl(struct file *file,
break; break;
#endif #endif
default: default:
ret = -EINVAL; ret = -ENOTTY;
break; break;
} }
mutex_unlock(&dmxdev->mutex); mutex_unlock(&dmxdev->mutex);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册