staging: vboxvideo: Do not return -ENOSYS
authorDebleena Sen <idebleenasen@gmail.com>
Sat, 9 Mar 2019 18:53:37 +0000 (10:53 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 18 Mar 2019 06:05:22 +0000 (07:05 +0100)
commit6de5cd74fb8f9bb940caa7d082ab03e38443a6fb
treefb747a17aeaa020b0f711711cf3aee8872790e91
parentde5e4aea8881390314cdb2f8e1c2ae40834c1c26
staging: vboxvideo: Do not return -ENOSYS

New instances of ENOSYS are errors. ENOSYS should be used for nonexistent
syscalls only. Use ENODEV instead as there should not be any other
driver for a virtual device that might share buffers with vboxvideo.

In vbox_prime.c, replace all occurrences of -ENOSYS with -ENODEV to fix
checkpatch.pl warning:

WARNING: ENOSYS means 'invalid syscall nr' and nothing else

Signed-off-by: Debleena Sen <idebleenasen@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vboxvideo/vbox_prime.c