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/bt8xx/Makefile | |
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/bt8xx/Makefile')
-rw-r--r-- | linux/drivers/media/video/bt8xx/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/linux/drivers/media/video/bt8xx/Makefile b/linux/drivers/media/video/bt8xx/Makefile new file mode 100644 index 000000000..94350f21c --- /dev/null +++ b/linux/drivers/media/video/bt8xx/Makefile @@ -0,0 +1,12 @@ +# +# Makefile for the video capture/playback device drivers. +# + +bttv-objs := bttv-driver.o bttv-cards.o bttv-if.o \ + bttv-risc.o bttv-vbi.o bttv-i2c.o bttv-gpio.o \ + bttv-input.o + +obj-$(CONFIG_VIDEO_BT848) += bttv.o + +EXTRA_CFLAGS += -I$(src)/.. +EXTRA_CFLAGS += -I$(srctree)/drivers/media/dvb/dvb-core |