* kernel-3.0: reference to 2.6.42 in comments?
@ 2011-07-30 14:21 Justin Piszcz
2011-07-30 15:47 ` [PATCH] uvcvideo: correct kernel version reference Greg Dietsche
0 siblings, 1 reply; 6+ messages in thread
From: Justin Piszcz @ 2011-07-30 14:21 UTC (permalink / raw)
To: linux-kernel
Hi,
Just noticed this--FYI
[ 22.792983] uvcvideo: Deprecated UVCIOC_CTRL_{ADD,MAP_OLD,GET,SET}
ioctls will be removed in 2.6.42.
[ 22.792994] uvcvideo: See http://www.ideasonboard.org/uvc/upgrade/ for
upgrade instructions.
Justin.
^ permalink raw reply [flat|nested] 6+ messages in thread* [PATCH] uvcvideo: correct kernel version reference 2011-07-30 14:21 kernel-3.0: reference to 2.6.42 in comments? Justin Piszcz @ 2011-07-30 15:47 ` Greg Dietsche 2011-07-30 20:36 ` Laurent Pinchart 0 siblings, 1 reply; 6+ messages in thread From: Greg Dietsche @ 2011-07-30 15:47 UTC (permalink / raw) To: laurent.pinchart Cc: mchehab, linux-media, linux-kernel, trivial, jpiszcz, Greg Dietsche change from v2.6.42 to v3.2 Reported-by: Justin Piszcz <jpiszcz@lucidpixels.com> Signed-off-by: Greg Dietsche <Gregory.Dietsche@cuw.edu> --- drivers/media/video/uvc/uvc_v4l2.c | 2 +- drivers/media/video/uvc/uvcvideo.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/media/video/uvc/uvc_v4l2.c b/drivers/media/video/uvc/uvc_v4l2.c index ea71d5f..6d6e3f9 100644 --- a/drivers/media/video/uvc/uvc_v4l2.c +++ b/drivers/media/video/uvc/uvc_v4l2.c @@ -546,7 +546,7 @@ static void uvc_v4l2_ioctl_warn(void) return; uvc_printk(KERN_INFO, "Deprecated UVCIOC_CTRL_{ADD,MAP_OLD,GET,SET} " - "ioctls will be removed in 2.6.42.\n"); + "ioctls will be removed in 3.2.\n"); uvc_printk(KERN_INFO, "See http://www.ideasonboard.org/uvc/upgrade/ " "for upgrade instructions.\n"); warned = 1; diff --git a/drivers/media/video/uvc/uvcvideo.h b/drivers/media/video/uvc/uvcvideo.h index df32a43..4419c34 100644 --- a/drivers/media/video/uvc/uvcvideo.h +++ b/drivers/media/video/uvc/uvcvideo.h @@ -7,7 +7,7 @@ #ifndef __KERNEL__ /* * This header provides binary compatibility with applications using the private - * uvcvideo API. This API is deprecated and will be removed in 2.6.42. + * uvcvideo API. This API is deprecated and will be removed in 3.2. * Applications should be recompiled against the public linux/uvcvideo.h header. */ #warn "The uvcvideo.h header is deprecated, use linux/uvcvideo.h instead." -- 1.7.2.5 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] uvcvideo: correct kernel version reference 2011-07-30 15:47 ` [PATCH] uvcvideo: correct kernel version reference Greg Dietsche @ 2011-07-30 20:36 ` Laurent Pinchart 2011-07-30 21:31 ` Greg Dietsche 0 siblings, 1 reply; 6+ messages in thread From: Laurent Pinchart @ 2011-07-30 20:36 UTC (permalink / raw) To: Greg Dietsche; +Cc: mchehab, linux-media, linux-kernel, trivial, jpiszcz Hi Greg, Thanks for the patch. On Saturday 30 July 2011 17:47:30 Greg Dietsche wrote: > change from v2.6.42 to v3.2 This patch would be queued for v3.2. As the code it fixes will go away at the same time, it would be pretty pointless to apply it :-) Thanks for warning me though. > Reported-by: Justin Piszcz <jpiszcz@lucidpixels.com> > Signed-off-by: Greg Dietsche <Gregory.Dietsche@cuw.edu> > --- > drivers/media/video/uvc/uvc_v4l2.c | 2 +- > drivers/media/video/uvc/uvcvideo.h | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/media/video/uvc/uvc_v4l2.c > b/drivers/media/video/uvc/uvc_v4l2.c index ea71d5f..6d6e3f9 100644 > --- a/drivers/media/video/uvc/uvc_v4l2.c > +++ b/drivers/media/video/uvc/uvc_v4l2.c > @@ -546,7 +546,7 @@ static void uvc_v4l2_ioctl_warn(void) > return; > > uvc_printk(KERN_INFO, "Deprecated UVCIOC_CTRL_{ADD,MAP_OLD,GET,SET} " > - "ioctls will be removed in 2.6.42.\n"); > + "ioctls will be removed in 3.2.\n"); > uvc_printk(KERN_INFO, "See http://www.ideasonboard.org/uvc/upgrade/ " > "for upgrade instructions.\n"); > warned = 1; > diff --git a/drivers/media/video/uvc/uvcvideo.h > b/drivers/media/video/uvc/uvcvideo.h index df32a43..4419c34 100644 > --- a/drivers/media/video/uvc/uvcvideo.h > +++ b/drivers/media/video/uvc/uvcvideo.h > @@ -7,7 +7,7 @@ > #ifndef __KERNEL__ > /* > * This header provides binary compatibility with applications using the > private - * uvcvideo API. This API is deprecated and will be removed in > 2.6.42. + * uvcvideo API. This API is deprecated and will be removed in > 3.2. * Applications should be recompiled against the public > linux/uvcvideo.h header. */ > #warn "The uvcvideo.h header is deprecated, use linux/uvcvideo.h instead." -- Regards, Laurent Pinchart ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] uvcvideo: correct kernel version reference 2011-07-30 20:36 ` Laurent Pinchart @ 2011-07-30 21:31 ` Greg Dietsche 2011-07-30 21:34 ` Laurent Pinchart 0 siblings, 1 reply; 6+ messages in thread From: Greg Dietsche @ 2011-07-30 21:31 UTC (permalink / raw) To: Laurent Pinchart; +Cc: mchehab, linux-media, linux-kernel, trivial, jpiszcz On 07/30/2011 03:36 PM, Laurent Pinchart wrote: > Hi Greg, > > Thanks for the patch. > > On Saturday 30 July 2011 17:47:30 Greg Dietsche wrote: > >> change from v2.6.42 to v3.2 >> > This patch would be queued for v3.2. As the code it fixes will go away at the > same time, it would be pretty pointless to apply it :-) Thanks for warning me > though. > > you're welcome - I thought the merge window was still open for 3.1 ... so that's why I sent it in. Greg ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] uvcvideo: correct kernel version reference 2011-07-30 21:31 ` Greg Dietsche @ 2011-07-30 21:34 ` Laurent Pinchart 2011-07-30 21:38 ` Greg Dietsche 0 siblings, 1 reply; 6+ messages in thread From: Laurent Pinchart @ 2011-07-30 21:34 UTC (permalink / raw) To: Greg Dietsche; +Cc: mchehab, linux-media, linux-kernel, trivial, jpiszcz Hi Greg, On Saturday 30 July 2011 23:31:16 Greg Dietsche wrote: > On 07/30/2011 03:36 PM, Laurent Pinchart wrote: > > Hi Greg, > > > > Thanks for the patch. > > > > On Saturday 30 July 2011 17:47:30 Greg Dietsche wrote: > >> change from v2.6.42 to v3.2 > > > > This patch would be queued for v3.2. As the code it fixes will go away at > > the same time, it would be pretty pointless to apply it :-) Thanks for > > warning me though. > > you're welcome - I thought the merge window was still open for 3.1 ... > so that's why I sent it in. Linus' merge window is still open, but this will have to go through Mauro's tree, and it won't make it on time. -- Regards, Laurent Pinchart ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] uvcvideo: correct kernel version reference 2011-07-30 21:34 ` Laurent Pinchart @ 2011-07-30 21:38 ` Greg Dietsche 0 siblings, 0 replies; 6+ messages in thread From: Greg Dietsche @ 2011-07-30 21:38 UTC (permalink / raw) To: Laurent Pinchart; +Cc: mchehab, linux-media, linux-kernel, trivial, jpiszcz On 07/30/2011 04:34 PM, Laurent Pinchart wrote: > Hi Greg, > > On Saturday 30 July 2011 23:31:16 Greg Dietsche wrote: > >> On 07/30/2011 03:36 PM, Laurent Pinchart wrote: >> >>> Hi Greg, >>> >>> Thanks for the patch. >>> >>> On Saturday 30 July 2011 17:47:30 Greg Dietsche wrote: >>> >>>> change from v2.6.42 to v3.2 >>>> >>> This patch would be queued for v3.2. As the code it fixes will go away at >>> the same time, it would be pretty pointless to apply it :-) Thanks for >>> warning me though. >>> >> you're welcome - I thought the merge window was still open for 3.1 ... >> so that's why I sent it in. >> > Linus' merge window is still open, but this will have to go through Mauro's > tree, and it won't make it on time. > > Ah, that makes sense :) Anyway it is very trivial... thanks for the explanation! Greg ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2011-07-30 21:38 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2011-07-30 14:21 kernel-3.0: reference to 2.6.42 in comments? Justin Piszcz 2011-07-30 15:47 ` [PATCH] uvcvideo: correct kernel version reference Greg Dietsche 2011-07-30 20:36 ` Laurent Pinchart 2011-07-30 21:31 ` Greg Dietsche 2011-07-30 21:34 ` Laurent Pinchart 2011-07-30 21:38 ` Greg Dietsche
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox