This is a note to let you know that I've just added the patch titled [media] sh_veu: v4l2_dev wasn't set to the 3.19-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: sh_veu-v4l2_dev-wasn-t-set.patch and it can be found in the queue-3.19 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From ab3120300be067a2d41a027c41db0b2c662ab200 Mon Sep 17 00:00:00 2001 From: Hans Verkuil <hverkuil@xxxxxxxxx> Date: Wed, 10 Dec 2014 12:35:34 -0300 Subject: [media] sh_veu: v4l2_dev wasn't set From: Hans Verkuil <hverkuil@xxxxxxxxx> commit ab3120300be067a2d41a027c41db0b2c662ab200 upstream. The v4l2_dev field of struct video_device must be set correctly. This was never done for this driver, so no video nodes were created anymore. Signed-off-by: Hans Verkuil <hans.verkuil@xxxxxxxxx> Signed-off-by: Mauro Carvalho Chehab <mchehab@xxxxxxxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/media/platform/sh_veu.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/media/platform/sh_veu.c +++ b/drivers/media/platform/sh_veu.c @@ -1179,6 +1179,7 @@ static int sh_veu_probe(struct platform_ } *vdev = sh_veu_videodev; + vdev->v4l2_dev = &veu->v4l2_dev; spin_lock_init(&veu->lock); mutex_init(&veu->fop_lock); vdev->lock = &veu->fop_lock; Patches currently in stable-queue which might be from hverkuil@xxxxxxxxx are queue-3.19/cx23885-fix-querycap.patch queue-3.19/sh_veu-v4l2_dev-wasn-t-set.patch queue-3.19/vb2-fix-unbalanced-warnings-when-calling-vb2_thread_stop.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html