diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-03-18 07:14:33 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-03-18 07:14:33 -0300 |
commit | f1883ef19f33045c8c559b1a94912773946f0cfa (patch) | |
tree | 1af39693c1c1c6c5f2777a80b0a377ec6af69e5e /linux/drivers/media/video/tda9875.c | |
parent | b76cf1534a48158bfbafe1ed5497621198877e06 (diff) | |
download | mediapointer-dvb-s2-f1883ef19f33045c8c559b1a94912773946f0cfa.tar.gz mediapointer-dvb-s2-f1883ef19f33045c8c559b1a94912773946f0cfa.tar.bz2 |
Fix Compilation after moving bttv code
From: Mauro Carvalho Chehab <mchehab@infradead.org>
- Missing a Makefile for bt8xx
- rds.h were at wrong directory, since it is a global header for an internal
interface
- tda7432 and tda9875 were dependent from bttv.h
- bttv.h were holding i2c addresses
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/video/tda9875.c')
-rw-r--r-- | linux/drivers/media/video/tda9875.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/video/tda9875.c b/linux/drivers/media/video/tda9875.c index 8a566026d..54386cacc 100644 --- a/linux/drivers/media/video/tda9875.c +++ b/linux/drivers/media/video/tda9875.c @@ -31,7 +31,6 @@ #include <linux/i2c-algo-bit.h> #include <linux/init.h> -#include "bttv.h" #if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0) #include "audiochip.h" #include "id.h" @@ -40,11 +39,12 @@ #include <media/audiochip.h> #endif +#include <media/i2c-addr.h> + static int debug; /* insmod parameter */ module_param(debug, int, S_IRUGO | S_IWUSR); MODULE_LICENSE("GPL"); - /* Addresses to scan */ static unsigned short normal_i2c[] = { I2C_TDA9875 >> 1, |