diff options
author | Hans de Goede <hdegoede@redhat.com> | 2010-09-05 15:05:22 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-10-20 23:04:44 -0400 |
commit | 1f33de0f8b91b70ccadb44958f09aa5bee7c1a44 (patch) | |
tree | 3af617c6e9672536c153f9674c4eb6095784155b /drivers/media/video/gspca/Makefile | |
parent | f1edeea6c2ec6f2a1362fe53b2f4e8b1c50c4216 (diff) |
V4L/DVB: gspca_xirlink_cit: New gspca subdriver replacing v4l1 usbvideo/ibmcam.c
The old usbvideo ibmcam driver needs to be replaced with a v4l2 driver
preferably using the gspca webcam framework rather then the old usbvideo
framework.
This new gspca sub driver sets a first step in that direction. The ibmcam
driver supports 4 different model webcams. This new driver (for now) only
supports Model 3 cameras, as my test cam is a Model 3 cam, or so I thought.
Upon reading:
http://www.linux-usb.org/ibmcam/
I learned that the IBM Netcamera Pro I have even though having the same
usb id and the same bcd version is different from the Model 3 cameras
supported by the ibmcam driver. So this new gscpa subdriver supports Model 3
cameras (untested), and the IBM Netcamera Pro. Currently use with the
IBM Netcamera Pro requires a module parameter. I hope to be able to
autodetect which is which in the future.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/gspca/Makefile')
-rw-r--r-- | drivers/media/video/gspca/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/media/video/gspca/Makefile b/drivers/media/video/gspca/Makefile index f6616db0b7f8..ea89ac1bd547 100644 --- a/drivers/media/video/gspca/Makefile +++ b/drivers/media/video/gspca/Makefile | |||
@@ -33,6 +33,7 @@ obj-$(CONFIG_USB_GSPCA_STV0680) += gspca_stv0680.o | |||
33 | obj-$(CONFIG_USB_GSPCA_T613) += gspca_t613.o | 33 | obj-$(CONFIG_USB_GSPCA_T613) += gspca_t613.o |
34 | obj-$(CONFIG_USB_GSPCA_TV8532) += gspca_tv8532.o | 34 | obj-$(CONFIG_USB_GSPCA_TV8532) += gspca_tv8532.o |
35 | obj-$(CONFIG_USB_GSPCA_VC032X) += gspca_vc032x.o | 35 | obj-$(CONFIG_USB_GSPCA_VC032X) += gspca_vc032x.o |
36 | obj-$(CONFIG_USB_GSPCA_XIRLINK_CIT) += gspca_xirlink_cit.o | ||
36 | obj-$(CONFIG_USB_GSPCA_ZC3XX) += gspca_zc3xx.o | 37 | obj-$(CONFIG_USB_GSPCA_ZC3XX) += gspca_zc3xx.o |
37 | 38 | ||
38 | gspca_main-objs := gspca.o | 39 | gspca_main-objs := gspca.o |
@@ -70,6 +71,7 @@ gspca_sunplus-objs := sunplus.o | |||
70 | gspca_t613-objs := t613.o | 71 | gspca_t613-objs := t613.o |
71 | gspca_tv8532-objs := tv8532.o | 72 | gspca_tv8532-objs := tv8532.o |
72 | gspca_vc032x-objs := vc032x.o | 73 | gspca_vc032x-objs := vc032x.o |
74 | gspca_xirlink_cit-objs := xirlink_cit.o | ||
73 | gspca_zc3xx-objs := zc3xx.o | 75 | gspca_zc3xx-objs := zc3xx.o |
74 | 76 | ||
75 | obj-$(CONFIG_USB_M5602) += m5602/ | 77 | obj-$(CONFIG_USB_M5602) += m5602/ |