mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-30 07:37:49 +00:00
V4L/DVB (8682): V4L: fix return value of register video func
If a wrong device type is used with video_register_device_index() it should better return an error number, instead of a constant. Signed-off-by: Henrik Kretzschmar <henne@nachtwindheim.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
b045979d61
commit
46f2c21cfd
@ -281,7 +281,7 @@ int video_register_device_index(struct video_device *vfd, int type, int nr,
|
||||
default:
|
||||
printk(KERN_ERR "%s called with unknown type: %d\n",
|
||||
__func__, type);
|
||||
return -1;
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
/* pick a minor number */
|
||||
|
Loading…
x
Reference in New Issue
Block a user