--- /dev/null
+From stable-bounces@linux.kernel.org Wed Oct 11 16:04:54 2006
+Date: Wed, 11 Oct 2006 18:19:24 -0400
+From: Dave Jones <davej@redhat.com>
+To: Greg KH <gregkh@suse.de>
+Message-ID: <20061011221924.GB2248@redhat.com>
+Subject: add utsrelease.h to the dontdiff file
+
+From: Dave Jones <davej@redhat.com>
+
+Signed-off-by: Dave Jones <davej@redhat.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
+
+---
+ Documentation/dontdiff | 1 +
+ 1 file changed, 1 insertion(+)
+
+--- linux-2.6.18.orig/Documentation/dontdiff
++++ linux-2.6.18/Documentation/dontdiff
+@@ -135,6 +135,7 @@ tags
+ times.h*
+ tkparse
+ trix_boot.h
++utsrelease.h*
+ version.h*
+ vmlinux
+ vmlinux-*
bcm43xx-fix-regressions-in-2.6.18.patch
netfilter-nat-fix-notrack-checksum-handling.patch
block-layer-elv_iosched_show-should-get-elv_list_lock.patch
+v4l-copy-paste-bug-in-videodev.c.patch
+add-utsrelease.h-to-the-dontdiff-file.patch
--- /dev/null
+From stable-bounces@linux.kernel.org Wed Oct 11 16:02:45 2006
+From: Sascha Hauer <s.hauer@pengutronix.de>
+To: Greg KH <gregkh@suse.de>
+Subject: V4L: copy-paste bug in videodev.c
+
+This patch fixes a copy-paste bug in videodev.c where the vidioc_qbuf()
+function gets called for the dqbuf ioctl.
+
+Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
+Cc: Jonathan Corbet <corbet@lwn.net>
+Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
+Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
+Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
+
+---
+ drivers/media/video/videodev.c | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+--- linux-2.6.18.orig/drivers/media/video/videodev.c
++++ linux-2.6.18/drivers/media/video/videodev.c
+@@ -739,13 +739,13 @@ static int __video_do_ioctl(struct inode
+ case VIDIOC_DQBUF:
+ {
+ struct v4l2_buffer *p=arg;
+- if (!vfd->vidioc_qbuf)
++ if (!vfd->vidioc_dqbuf)
+ break;
+ ret = check_fmt (vfd, p->type);
+ if (ret)
+ break;
+
+- ret=vfd->vidioc_qbuf(file, fh, p);
++ ret=vfd->vidioc_dqbuf(file, fh, p);
+ if (!ret)
+ dbgbuf(cmd,vfd,p);
+ break;