diff options
author | Michael Krufky <devnull@localhost> | 2005-10-11 20:11:34 +0000 |
---|---|---|
committer | Michael Krufky <devnull@localhost> | 2005-10-11 20:11:34 +0000 |
commit | 03ad0fac693b608f7a870d1b3b71f73c3429df72 (patch) | |
tree | 23afc7ad7f94adde24532e21d0c7695d9797e784 /linux/drivers/media/video/cx88/cx88.h | |
parent | 72df048713f9c8f3d39b06e3c8f6d571cc01e38e (diff) | |
download | mediapointer-dvb-s2-03ad0fac693b608f7a870d1b3b71f73c3429df72.tar.gz mediapointer-dvb-s2-03ad0fac693b608f7a870d1b3b71f73c3429df72.tar.bz2 |
* ../linux/drivers/media/video/cx88/cx88.h:
* ../v4l/Make.config:
* ../v4l/Makefile:
- Allow to disable build of video-buf-dvb in Make.config
using compile flag CONFIG_VIDEO_BUF_DVB
- replaced check using this method:
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0))
+#ifdef HAVE_VIDEO_BUF_DVB
* ../linux/drivers/media/video/saa7134/saa7134.h:
- #include <linux/notifier.h> in saa7134.h to fix build
Signed-off-by: Michael Krufky <mkrufky@m1k.net>
Diffstat (limited to 'linux/drivers/media/video/cx88/cx88.h')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linux/drivers/media/video/cx88/cx88.h b/linux/drivers/media/video/cx88/cx88.h index f8c98a8aa..034c97419 100644 --- a/linux/drivers/media/video/cx88/cx88.h +++ b/linux/drivers/media/video/cx88/cx88.h @@ -1,5 +1,5 @@ /* - * $Id: cx88.h,v 1.85 2005/10/11 05:20:47 mkrufky Exp $ + * $Id: cx88.h,v 1.86 2005/10/11 20:11:34 mkrufky Exp $ * * v4l2 device driver for cx2388x based TV cards * @@ -30,7 +30,7 @@ #include <media/tveeprom.h> #include <media/audiochip.h> #include <media/video-buf.h> -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)) +#ifdef HAVE_VIDEO_BUF_DVB #include <media/video-buf-dvb.h> #endif #include "compat.h" @@ -439,7 +439,7 @@ struct cx8802_dev { int width; int height; -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)) +#ifdef HAVE_VIDEO_BUF_DVB /* for dvb only */ struct videobuf_dvb dvb; void* fe_handle; |