diff options
author | Hans Verkuil <hverkuil-cisco@xs4all.nl> | 2023-10-06 15:45:48 +0200 |
---|---|---|
committer | Hans Verkuil <hverkuil-cisco@xs4all.nl> | 2023-10-13 11:33:22 +0200 |
commit | 73e0538b4973df256962fda3aa0d89e6d0f79cd9 (patch) | |
tree | 7c687c86666f93f44c19e6ace73468e19be0fb26 /Documentation | |
parent | 900c06e9732859ff1be26dbb913b3c158ed15eb4 (diff) | |
download | linux-73e0538b4973df256962fda3aa0d89e6d0f79cd9.tar.gz linux-73e0538b4973df256962fda3aa0d89e6d0f79cd9.tar.bz2 linux-73e0538b4973df256962fda3aa0d89e6d0f79cd9.zip |
Documentation: media: gen-errors.rst: fix confusing ENOTTY description
The text is very, very old and predates /dev/mediaX devices, so the
reference to "media device" is today very confusing.
It also says that the ioctl is not supported by the driver, but a
driver may have multiple device nodes, some support a given ioctl,
and some don't.
Simplify the description: ENOTTY means that the ioctl is not supported
by the file descriptor.
Reported-by: Nicolas Dufresne <nicolas.dufresne@collabora.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Reviewed-by: Nicolas Dufresne <nicolas.dufresne@collabora.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/userspace-api/media/gen-errors.rst | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Documentation/userspace-api/media/gen-errors.rst b/Documentation/userspace-api/media/gen-errors.rst index e595d0bea109..4e8defd3612b 100644 --- a/Documentation/userspace-api/media/gen-errors.rst +++ b/Documentation/userspace-api/media/gen-errors.rst @@ -59,9 +59,7 @@ Generic Error Codes - - ``ENOTTY`` - - The ioctl is not supported by the driver, actually meaning that - the required functionality is not available, or the file - descriptor is not for a media device. + - The ioctl is not supported by the file descriptor. - - ``ENOSPC`` |