diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/video/v4l2-int-device.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/v4l2-int-device.c b/drivers/media/video/v4l2-int-device.c index 7ad8700ebdea..f497c9458344 100644 --- a/drivers/media/video/v4l2-int-device.c +++ b/drivers/media/video/v4l2-int-device.c | |||
@@ -143,7 +143,7 @@ static v4l2_int_ioctl_func *find_ioctl(struct v4l2_int_slave *slave, int cmd, | |||
143 | 143 | ||
144 | static int no_such_ioctl_0(struct v4l2_int_device *d) | 144 | static int no_such_ioctl_0(struct v4l2_int_device *d) |
145 | { | 145 | { |
146 | return -EINVAL; | 146 | return -ENOIOCTLCMD; |
147 | } | 147 | } |
148 | 148 | ||
149 | int v4l2_int_ioctl_0(struct v4l2_int_device *d, int cmd) | 149 | int v4l2_int_ioctl_0(struct v4l2_int_device *d, int cmd) |
@@ -155,7 +155,7 @@ int v4l2_int_ioctl_0(struct v4l2_int_device *d, int cmd) | |||
155 | 155 | ||
156 | static int no_such_ioctl_1(struct v4l2_int_device *d, void *arg) | 156 | static int no_such_ioctl_1(struct v4l2_int_device *d, void *arg) |
157 | { | 157 | { |
158 | return -EINVAL; | 158 | return -ENOIOCTLCMD; |
159 | } | 159 | } |
160 | 160 | ||
161 | int v4l2_int_ioctl_1(struct v4l2_int_device *d, int cmd, void *arg) | 161 | int v4l2_int_ioctl_1(struct v4l2_int_device *d, int cmd, void *arg) |