stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Patch "[media] saa7164: fix querycap warning" has been added to the 3.10-stable tree
@ 2015-07-30  0:46 gregkh
  2015-07-30 13:34 ` Luis Henriques
  0 siblings, 1 reply; 3+ messages in thread
From: gregkh @ 2015-07-30  0:46 UTC (permalink / raw)
  To: hverkuil, gregkh, hans.verkuil, mchehab; +Cc: stable, stable-commits


This is a note to let you know that I've just added the patch titled

    [media] saa7164: fix querycap warning

to the 3.10-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:
     saa7164-fix-querycap-warning.patch
and it can be found in the queue-3.10 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@vger.kernel.org> know about it.


>From 534bc3e2ee93835badca753bedce8073c67caa92 Mon Sep 17 00:00:00 2001
From: Hans Verkuil <hverkuil@xs4all.nl>
Date: Fri, 27 Mar 2015 15:17:56 -0300
Subject: [media] saa7164: fix querycap warning

From: Hans Verkuil <hverkuil@xs4all.nl>

commit 534bc3e2ee93835badca753bedce8073c67caa92 upstream.

Fix the VIDIOC_QUERYCAP warning due to the missing device_caps. Don't fill
in the version field, the V4L2 core will do that for you.

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 drivers/media/pci/saa7164/saa7164-encoder.c |   11 ++++++-----
 drivers/media/pci/saa7164/saa7164-vbi.c     |   11 ++++++-----
 2 files changed, 12 insertions(+), 10 deletions(-)

--- a/drivers/media/pci/saa7164/saa7164-encoder.c
+++ b/drivers/media/pci/saa7164/saa7164-encoder.c
@@ -711,13 +711,14 @@ static int vidioc_querycap(struct file *
 		sizeof(cap->card));
 	sprintf(cap->bus_info, "PCI:%s", pci_name(dev->pci));
 
-	cap->capabilities =
+	cap->device_caps =
 		V4L2_CAP_VIDEO_CAPTURE |
-		V4L2_CAP_READWRITE     |
-		0;
+		V4L2_CAP_READWRITE |
+		V4L2_CAP_TUNER;
 
-	cap->capabilities |= V4L2_CAP_TUNER;
-	cap->version = 0;
+	cap->capabilities = cap->device_caps |
+		V4L2_CAP_VBI_CAPTURE |
+		V4L2_CAP_DEVICE_CAPS;
 
 	return 0;
 }
--- a/drivers/media/pci/saa7164/saa7164-vbi.c
+++ b/drivers/media/pci/saa7164/saa7164-vbi.c
@@ -650,13 +650,14 @@ static int vidioc_querycap(struct file *
 		sizeof(cap->card));
 	sprintf(cap->bus_info, "PCI:%s", pci_name(dev->pci));
 
-	cap->capabilities =
+	cap->device_caps =
 		V4L2_CAP_VBI_CAPTURE |
-		V4L2_CAP_READWRITE     |
-		0;
+		V4L2_CAP_READWRITE |
+		V4L2_CAP_TUNER;
 
-	cap->capabilities |= V4L2_CAP_TUNER;
-	cap->version = 0;
+	cap->capabilities = cap->device_caps |
+		V4L2_CAP_VIDEO_CAPTURE |
+		V4L2_CAP_DEVICE_CAPS;
 
 	return 0;
 }


Patches currently in stable-queue which might be from hverkuil@xs4all.nl are

queue-3.10/saa7164-fix-querycap-warning.patch

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Patch "[media] saa7164: fix querycap warning" has been added to the 3.10-stable tree
  2015-07-30  0:46 Patch "[media] saa7164: fix querycap warning" has been added to the 3.10-stable tree gregkh
@ 2015-07-30 13:34 ` Luis Henriques
  2015-07-30 16:56   ` Greg KH
  0 siblings, 1 reply; 3+ messages in thread
From: Luis Henriques @ 2015-07-30 13:34 UTC (permalink / raw)
  To: gregkh; +Cc: hverkuil, hans.verkuil, mchehab, stable, stable-commits

On Wed, Jul 29, 2015 at 05:46:59PM -0700, Greg Kroah-Hartman wrote:
> 
> This is a note to let you know that I've just added the patch titled
> 
>     [media] saa7164: fix querycap warning
> 
> to the 3.10-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:
>      saa7164-fix-querycap-warning.patch
> and it can be found in the queue-3.10 subdirectory.
> 
> If you, or anyone else, feels it should not be added to the stable tree,
> please let <stable@vger.kernel.org> know about it.
>

This patch was tagged for stable v3.19 and up, so it probably isn't
required for 3.10 or 3.14.

Cheers,
--
Lu�s

> 
> From 534bc3e2ee93835badca753bedce8073c67caa92 Mon Sep 17 00:00:00 2001
> From: Hans Verkuil <hverkuil@xs4all.nl>
> Date: Fri, 27 Mar 2015 15:17:56 -0300
> Subject: [media] saa7164: fix querycap warning
> 
> From: Hans Verkuil <hverkuil@xs4all.nl>
> 
> commit 534bc3e2ee93835badca753bedce8073c67caa92 upstream.
> 
> Fix the VIDIOC_QUERYCAP warning due to the missing device_caps. Don't fill
> in the version field, the V4L2 core will do that for you.
> 
> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> 
> ---
>  drivers/media/pci/saa7164/saa7164-encoder.c |   11 ++++++-----
>  drivers/media/pci/saa7164/saa7164-vbi.c     |   11 ++++++-----
>  2 files changed, 12 insertions(+), 10 deletions(-)
> 
> --- a/drivers/media/pci/saa7164/saa7164-encoder.c
> +++ b/drivers/media/pci/saa7164/saa7164-encoder.c
> @@ -711,13 +711,14 @@ static int vidioc_querycap(struct file *
>  		sizeof(cap->card));
>  	sprintf(cap->bus_info, "PCI:%s", pci_name(dev->pci));
>  
> -	cap->capabilities =
> +	cap->device_caps =
>  		V4L2_CAP_VIDEO_CAPTURE |
> -		V4L2_CAP_READWRITE     |
> -		0;
> +		V4L2_CAP_READWRITE |
> +		V4L2_CAP_TUNER;
>  
> -	cap->capabilities |= V4L2_CAP_TUNER;
> -	cap->version = 0;
> +	cap->capabilities = cap->device_caps |
> +		V4L2_CAP_VBI_CAPTURE |
> +		V4L2_CAP_DEVICE_CAPS;
>  
>  	return 0;
>  }
> --- a/drivers/media/pci/saa7164/saa7164-vbi.c
> +++ b/drivers/media/pci/saa7164/saa7164-vbi.c
> @@ -650,13 +650,14 @@ static int vidioc_querycap(struct file *
>  		sizeof(cap->card));
>  	sprintf(cap->bus_info, "PCI:%s", pci_name(dev->pci));
>  
> -	cap->capabilities =
> +	cap->device_caps =
>  		V4L2_CAP_VBI_CAPTURE |
> -		V4L2_CAP_READWRITE     |
> -		0;
> +		V4L2_CAP_READWRITE |
> +		V4L2_CAP_TUNER;
>  
> -	cap->capabilities |= V4L2_CAP_TUNER;
> -	cap->version = 0;
> +	cap->capabilities = cap->device_caps |
> +		V4L2_CAP_VIDEO_CAPTURE |
> +		V4L2_CAP_DEVICE_CAPS;
>  
>  	return 0;
>  }
> 
> 
> Patches currently in stable-queue which might be from hverkuil@xs4all.nl are
> 
> queue-3.10/saa7164-fix-querycap-warning.patch
> --
> To unsubscribe from this list: send the line "unsubscribe stable" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Patch "[media] saa7164: fix querycap warning" has been added to the 3.10-stable tree
  2015-07-30 13:34 ` Luis Henriques
@ 2015-07-30 16:56   ` Greg KH
  0 siblings, 0 replies; 3+ messages in thread
From: Greg KH @ 2015-07-30 16:56 UTC (permalink / raw)
  To: Luis Henriques; +Cc: hverkuil, hans.verkuil, mchehab, stable, stable-commits

On Thu, Jul 30, 2015 at 02:34:55PM +0100, Luis Henriques wrote:
> On Wed, Jul 29, 2015 at 05:46:59PM -0700, Greg Kroah-Hartman wrote:
> > 
> > This is a note to let you know that I've just added the patch titled
> > 
> >     [media] saa7164: fix querycap warning
> > 
> > to the 3.10-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:
> >      saa7164-fix-querycap-warning.patch
> > and it can be found in the queue-3.10 subdirectory.
> > 
> > If you, or anyone else, feels it should not be added to the stable tree,
> > please let <stable@vger.kernel.org> know about it.
> >
> 
> This patch was tagged for stable v3.19 and up, so it probably isn't
> required for 3.10 or 3.14.

Ah, good catch, now removed, thanks.

greg k-h

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-07-30 16:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-30  0:46 Patch "[media] saa7164: fix querycap warning" has been added to the 3.10-stable tree gregkh
2015-07-30 13:34 ` Luis Henriques
2015-07-30 16:56   ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).