diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-03-26 16:12:04 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-03-26 16:12:04 -0300 |
commit | 4d2d8bc39b49becf7f44ddebfedc90df3976be1e (patch) | |
tree | a241048d5c2f14731f4aa14557c06dce6740aac8 /linux/drivers/media/video/sn9c102/sn9c102_tas5130d1b.c | |
parent | 00b6dbf1372a8f3f77f2d5ff9b2cfd47797826d3 (diff) | |
download | mediapointer-dvb-s2-4d2d8bc39b49becf7f44ddebfedc90df3976be1e.tar.gz mediapointer-dvb-s2-4d2d8bc39b49becf7f44ddebfedc90df3976be1e.tar.bz2 |
SN9C1xx driver updates
From: Luca Risolia <luca.risolia@studio.unibo.it>
Changes: + new, - removed, * cleanup, @ bugfix
@ Don't assume that SOF headers can't cross packets boundaries
@ Fix compression quality selection
+ Add support for MI-0360 image sensor
* Documentation updates
@ Fix sysfs
@ MI0343 rewritten
* HV7131R color fixes and add new ABLC control
* Rename the archive from "sn9c102" to "sn9c1xx"
* fix typos
* better support for TAS5110D
@ fix OV7630 wrong colors
@ Don't return an error if no input buffers are enqueued yet on VIDIOC_STREAMON
* Add informations about colorspaces
* More appropriate error codes in case of failure of some system calls
* More precise hardware detection
* Add more informations about supported hardware in the documentation
+ More supported devices
+ Add support for HV7131R image sensor
Signed-off-by: Luca Risolia <luca.risolia@studio.unibo.it>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/video/sn9c102/sn9c102_tas5130d1b.c')
-rw-r--r-- | linux/drivers/media/video/sn9c102/sn9c102_tas5130d1b.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/linux/drivers/media/video/sn9c102/sn9c102_tas5130d1b.c b/linux/drivers/media/video/sn9c102/sn9c102_tas5130d1b.c index cb1b318bc..a7f711396 100644 --- a/linux/drivers/media/video/sn9c102/sn9c102_tas5130d1b.c +++ b/linux/drivers/media/video/sn9c102/sn9c102_tas5130d1b.c @@ -22,9 +22,6 @@ #include "sn9c102_sensor.h" -static struct sn9c102_sensor tas5130d1b; - - static int tas5130d1b_init(struct sn9c102_device* cam) { int err = 0; @@ -99,7 +96,7 @@ static int tas5130d1b_set_pix_format(struct sn9c102_device* cam, static struct sn9c102_sensor tas5130d1b = { .name = "TAS5130D1B", .maintainer = "Luca Risolia <luca.risolia@studio.unibo.it>", - .supported_bridge = BRIDGE_SN9C101 | BRIDGE_SN9C102 | BRIDGE_SN9C103, + .supported_bridge = BRIDGE_SN9C101 | BRIDGE_SN9C102, .sysfs_ops = SN9C102_I2C_WRITE, .frequency = SN9C102_I2C_100KHZ, .interface = SN9C102_I2C_3WIRES, |