mirror of
https://github.com/torvalds/linux.git
synced 2024-12-04 18:13:04 +00:00
media: rcar-vin: change name of video device
The rcar-vin driver needs to be part of a media controller to support Gen3. Give each VIN instance a unique name so it can be referenced from userspace. Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
3bb4c3bc85
commit
e806e328c8
@ -991,7 +991,7 @@ int rvin_v4l2_register(struct rvin_dev *vin)
|
||||
/* video node */
|
||||
vdev->v4l2_dev = &vin->v4l2_dev;
|
||||
vdev->queue = &vin->queue;
|
||||
strlcpy(vdev->name, KBUILD_MODNAME, sizeof(vdev->name));
|
||||
snprintf(vdev->name, sizeof(vdev->name), "VIN%u output", vin->id);
|
||||
vdev->release = video_device_release_empty;
|
||||
vdev->lock = &vin->lock;
|
||||
vdev->device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING |
|
||||
|
Loading…
Reference in New Issue
Block a user