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:
Henrik Kretzschmar
2008-09-03 16:47:39 -03:00
committed by Mauro Carvalho Chehab
parent b045979d61
commit 46f2c21cfd

View File

@@ -281,7 +281,7 @@ int video_register_device_index(struct video_device *vfd, int type, int nr,
default: default:
printk(KERN_ERR "%s called with unknown type: %d\n", printk(KERN_ERR "%s called with unknown type: %d\n",
__func__, type); __func__, type);
return -1; return -EINVAL;
} }
/* pick a minor number */ /* pick a minor number */