diff options
author | Ondrej Zary <linux@rainbow-software.org> | 2013-08-20 09:03:59 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2013-08-21 04:21:55 -0400 |
commit | 4ab0620bdc6fe3ca2365c014552dee64402670a4 (patch) | |
tree | e8f7c8cce83e32a07ae3a54b4e0cfc760daf7241 /drivers/media/usb/gspca/Makefile | |
parent | d48de1c73b41d27e3cc6e500eb9588449edb2f14 (diff) |
[media] introduce gspca-stk1135: Syntek STK1135 driver
Hello,
this is a new gspca driver for Syntek STK1135 webcams. The code is completely
new, but register values are based on Syntekdriver (stk11xx) by Nicolas VIVIEN
(http://syntekdriver.sourceforge.net).
Only one webcam type is supported now - vendor 0x174f, device 0x6a31.
It's Asus F5RL laptop flippable webcam with MT9M112.
The camera works better than in Windows - initializes much faster and
provides more resolutions (the sensor can do almost any resolution - just
add it to the stk1135_modes[] - could this feature be somehow used by
applications to avoid SW scaling?).
Autoflip works too - when the camera is flipped around, the image is flipped
automatically.
Signed-off-by: Ondrej Zary <linux@rainbow-software.org>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media/usb/gspca/Makefile')
-rw-r--r-- | drivers/media/usb/gspca/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/media/usb/gspca/Makefile b/drivers/media/usb/gspca/Makefile index c901da0bd657..5855131ab8b6 100644 --- a/drivers/media/usb/gspca/Makefile +++ b/drivers/media/usb/gspca/Makefile | |||
@@ -34,6 +34,7 @@ obj-$(CONFIG_USB_GSPCA_SQ905C) += gspca_sq905c.o | |||
34 | obj-$(CONFIG_USB_GSPCA_SQ930X) += gspca_sq930x.o | 34 | obj-$(CONFIG_USB_GSPCA_SQ930X) += gspca_sq930x.o |
35 | obj-$(CONFIG_USB_GSPCA_SUNPLUS) += gspca_sunplus.o | 35 | obj-$(CONFIG_USB_GSPCA_SUNPLUS) += gspca_sunplus.o |
36 | obj-$(CONFIG_USB_GSPCA_STK014) += gspca_stk014.o | 36 | obj-$(CONFIG_USB_GSPCA_STK014) += gspca_stk014.o |
37 | obj-$(CONFIG_USB_GSPCA_STK1135) += gspca_stk1135.o | ||
37 | obj-$(CONFIG_USB_GSPCA_STV0680) += gspca_stv0680.o | 38 | obj-$(CONFIG_USB_GSPCA_STV0680) += gspca_stv0680.o |
38 | obj-$(CONFIG_USB_GSPCA_T613) += gspca_t613.o | 39 | obj-$(CONFIG_USB_GSPCA_T613) += gspca_t613.o |
39 | obj-$(CONFIG_USB_GSPCA_TOPRO) += gspca_topro.o | 40 | obj-$(CONFIG_USB_GSPCA_TOPRO) += gspca_topro.o |
@@ -78,6 +79,7 @@ gspca_sq905-objs := sq905.o | |||
78 | gspca_sq905c-objs := sq905c.o | 79 | gspca_sq905c-objs := sq905c.o |
79 | gspca_sq930x-objs := sq930x.o | 80 | gspca_sq930x-objs := sq930x.o |
80 | gspca_stk014-objs := stk014.o | 81 | gspca_stk014-objs := stk014.o |
82 | gspca_stk1135-objs := stk1135.o | ||
81 | gspca_stv0680-objs := stv0680.o | 83 | gspca_stv0680-objs := stv0680.o |
82 | gspca_sunplus-objs := sunplus.o | 84 | gspca_sunplus-objs := sunplus.o |
83 | gspca_t613-objs := t613.o | 85 | gspca_t613-objs := t613.o |