diff options
author | Trent Piepho <xyzzy@speakeasy.org> | 2007-02-19 19:01:09 -0800 |
---|---|---|
committer | Trent Piepho <xyzzy@speakeasy.org> | 2007-02-19 19:01:09 -0800 |
commit | 13aac084f52613baf79f047bdac0b0decc2b37d2 (patch) | |
tree | b5211790cf77de69d3425d824bc8ef138fe91494 /linux/drivers/media/video/zr364xx.c | |
parent | 613018f65de3818251f3a07868d89893bb3a0068 (diff) | |
download | mediapointer-dvb-s2-13aac084f52613baf79f047bdac0b0decc2b37d2.tar.gz mediapointer-dvb-s2-13aac084f52613baf79f047bdac0b0decc2b37d2.tar.bz2 |
compat: Fix compat stuff for usbvision and zr364xx
From: Trent Piepho <xyzzy@speakeasy.org>
compat.h was missing from usbvideo-i2c.c and zr364xx.c
zr364xx.c needed the struct semaphore -> struct mutex compat check.
Added an old i2c id to compat.h. These could be added to the Hg copy of
linux/i2c-id.h instead? There's just this one so far.
zr364xx needs 2.6.15 because of vm_insert_page(), so add to versions.txt
Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
Diffstat (limited to 'linux/drivers/media/video/zr364xx.c')
-rw-r--r-- | linux/drivers/media/video/zr364xx.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/linux/drivers/media/video/zr364xx.c b/linux/drivers/media/video/zr364xx.c index 05ff49c29..2c9ac4cd2 100644 --- a/linux/drivers/media/video/zr364xx.c +++ b/linux/drivers/media/video/zr364xx.c @@ -34,6 +34,7 @@ #include <linux/slab.h> #include <linux/proc_fs.h> #include <media/v4l2-common.h> +#include "compat.h" /* Version Information */ @@ -103,7 +104,11 @@ struct zr364xx_camera { int width; int height; int method; +#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,15) struct mutex lock; +#else + struct semaphore lock; +#endif }; |