mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [GIT PATCH for 2.6.26] V4L/DVB: Addition of UVC driver
@ 2008-06-30 20:56 Mauro Carvalho Chehab
  2008-07-02 12:18 ` Mauro Carvalho Chehab
  0 siblings, 1 reply; 2+ messages in thread
From: Mauro Carvalho Chehab @ 2008-06-30 20:56 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Andrew Morton, linux-dvb-maintainer, video4linux-list,
	linux-kernel, Greg KH, Brandon Philips

Linus,

Please pull from:
        ssh://master.kernel.org/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git master

For USB Video Class (UVC) driver.

I know that we are very late on 2.6.26 cycle. However,
	1) most of modern webcams are based on USB Video Class (UVC). So, this
driver is important to suport those cams.
	2) This is a driver-only addition. There aren't any changes at V4L/DVB
core. No risk of causing regressions on the already supported devices;
	3) The driver were already reviewed by V4L and USB people;
	4) The driver is already widely used, since it is merged as an
out-of-tree driver on several distros. 

So, on my opinion, we should merge it for 2.6.26.

Cheers,
Mauro.

---

 MAINTAINERS                          |    8 +
 drivers/media/video/Kconfig          |    8 +
 drivers/media/video/Makefile         |    2 +
 drivers/media/video/uvc/Makefile     |    3 +
 drivers/media/video/uvc/uvc_ctrl.c   | 1256 ++++++++++++++++++++++
 drivers/media/video/uvc/uvc_driver.c | 1955 ++++++++++++++++++++++++++++++++++
 drivers/media/video/uvc/uvc_isight.c |  134 +++
 drivers/media/video/uvc/uvc_queue.c  |  477 +++++++++
 drivers/media/video/uvc/uvc_status.c |  207 ++++
 drivers/media/video/uvc/uvc_v4l2.c   | 1105 +++++++++++++++++++
 drivers/media/video/uvc/uvc_video.c  |  934 ++++++++++++++++
 drivers/media/video/uvc/uvcvideo.h   |  796 ++++++++++++++
 12 files changed, 6885 insertions(+), 0 deletions(-)
 create mode 100644 drivers/media/video/uvc/Makefile
 create mode 100644 drivers/media/video/uvc/uvc_ctrl.c
 create mode 100644 drivers/media/video/uvc/uvc_driver.c
 create mode 100644 drivers/media/video/uvc/uvc_isight.c
 create mode 100644 drivers/media/video/uvc/uvc_queue.c
 create mode 100644 drivers/media/video/uvc/uvc_status.c
 create mode 100644 drivers/media/video/uvc/uvc_v4l2.c
 create mode 100644 drivers/media/video/uvc/uvc_video.c
 create mode 100644 drivers/media/video/uvc/uvcvideo.h

Laurent Pinchart (1):
      V4L/DVB (8145a): USB Video Class driver

---------------------------------------------------
V4L/DVB development is hosted at http://linuxtv.org

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

* Re: [GIT PATCH for 2.6.26] V4L/DVB: Addition of UVC driver
  2008-06-30 20:56 [GIT PATCH for 2.6.26] V4L/DVB: Addition of UVC driver Mauro Carvalho Chehab
@ 2008-07-02 12:18 ` Mauro Carvalho Chehab
  0 siblings, 0 replies; 2+ messages in thread
From: Mauro Carvalho Chehab @ 2008-07-02 12:18 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Andrew Morton, linux-dvb-maintainer, video4linux-list,
	linux-kernel, Greg KH, Brandon Philips

On Mon, 30 Jun 2008 17:56:05 -0300
Mauro Carvalho Chehab <mchehab@infradead.org> wrote:

> Linus,
> 
> Please pull from:
>         ssh://master.kernel.org/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git master
> 
> For USB Video Class (UVC) driver.
> 
> I know that we are very late on 2.6.26 cycle. However,
> 	1) most of modern webcams are based on USB Video Class (UVC). So, this
> driver is important to suport those cams.
> 	2) This is a driver-only addition. There aren't any changes at V4L/DVB
> core. No risk of causing regressions on the already supported devices;
> 	3) The driver were already reviewed by V4L and USB people;
> 	4) The driver is already widely used, since it is merged as an
> out-of-tree driver on several distros. 
> 
> So, on my opinion, we should merge it for 2.6.26.

I got a small but relevant bug at uvc Makefile.

If you decide to apply it, please merge those two patches:

   - USB Video Class driver
   - uvc: Fix compilation breakage for the other drivers, if uvc is selected

So, please pull from:
        ssh://master.kernel.org/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git master

 MAINTAINERS                          |    8 +
 drivers/media/video/Kconfig          |    8 +
 drivers/media/video/Makefile         |    2 +
 drivers/media/video/uvc/Makefile     |    3 +
 drivers/media/video/uvc/uvc_ctrl.c   | 1256 ++++++++++++++++++++++
 drivers/media/video/uvc/uvc_driver.c | 1955 ++++++++++++++++++++++++++++++++++
 drivers/media/video/uvc/uvc_isight.c |  134 +++
 drivers/media/video/uvc/uvc_queue.c  |  477 +++++++++
 drivers/media/video/uvc/uvc_status.c |  207 ++++
 drivers/media/video/uvc/uvc_v4l2.c   | 1105 +++++++++++++++++++
 drivers/media/video/uvc/uvc_video.c  |  934 ++++++++++++++++
 drivers/media/video/uvc/uvcvideo.h   |  796 ++++++++++++++
 12 files changed, 6885 insertions(+), 0 deletions(-)
 create mode 100644 drivers/media/video/uvc/Makefile
 create mode 100644 drivers/media/video/uvc/uvc_ctrl.c
 create mode 100644 drivers/media/video/uvc/uvc_driver.c
 create mode 100644 drivers/media/video/uvc/uvc_isight.c
 create mode 100644 drivers/media/video/uvc/uvc_queue.c
 create mode 100644 drivers/media/video/uvc/uvc_status.c
 create mode 100644 drivers/media/video/uvc/uvc_v4l2.c
 create mode 100644 drivers/media/video/uvc/uvc_video.c
 create mode 100644 drivers/media/video/uvc/uvcvideo.h

Laurent Pinchart (1):
      V4L/DVB (8145a): USB Video Class driver

Mauro Carvalho Chehab (1):
      V4L/DVB (8178): uvc: Fix compilation breakage for the other drivers, if uvc is selected

---------------------------------------------------
V4L/DVB development is hosted at http://linuxtv.org


Cheers,
Mauro

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

end of thread, other threads:[~2008-07-02 12:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-06-30 20:56 [GIT PATCH for 2.6.26] V4L/DVB: Addition of UVC driver Mauro Carvalho Chehab
2008-07-02 12:18 ` Mauro Carvalho Chehab

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®