Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'v4l_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media

* 'v4l_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media:
[media] omap3isp: Fix crash caused by subdevs now having a pointer to devnodes

+2 -2
+1 -1
drivers/media/video/omap3isp/ispccdc.c
··· 1408 1408 { 1409 1409 struct isp_pipeline *pipe = 1410 1410 to_isp_pipeline(&ccdc->video_out.video.entity); 1411 - struct video_device *vdev = &ccdc->subdev.devnode; 1411 + struct video_device *vdev = ccdc->subdev.devnode; 1412 1412 struct v4l2_event event; 1413 1413 1414 1414 memset(&event, 0, sizeof(event));
+1 -1
drivers/media/video/omap3isp/ispstat.c
··· 496 496 497 497 static void isp_stat_queue_event(struct ispstat *stat, int err) 498 498 { 499 - struct video_device *vdev = &stat->subdev.devnode; 499 + struct video_device *vdev = stat->subdev.devnode; 500 500 struct v4l2_event event; 501 501 struct omap3isp_stat_event_status *status = (void *)event.u.data; 502 502