Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

doc: media: v4l/func-open.rst: ENXIO should be ENODEV

The error that V4L2 returns when an attempt is made to open an
unregisted device node is ENODEV, no ENXIO. Update the documentation.

Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>

+2 -2
+2 -2
Documentation/userspace-api/media/v4l/func-open.rst
··· 65 65 The driver does not support multiple opens and the device is already 66 66 in use. 67 67 68 - ENXIO 69 - No device corresponding to this device special file exists. 68 + ENODEV 69 + Device not found or was removed. 70 70 71 71 ENOMEM 72 72 Not enough kernel memory was available to complete the request.