6ddcc9197b
Rename lgdt3302 to lgdt330x, to make way for the addition of lgdt3303 support in future revisions. I am changing the name of this module now so that hopefully the name will be changed before the release of 2.6.13 ... It wouldn't make sense to release 2.6.13 with the name lgdt3302 in it, which will only be renamed to lgdt330x in later versions. Signed-off-by: Michael Krufky <mkrufky@m1k.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
23 lines
696 B
Makefile
23 lines
696 B
Makefile
cx88xx-objs := cx88-cards.o cx88-core.o cx88-i2c.o cx88-tvaudio.o \
|
|
cx88-input.o
|
|
cx8800-objs := cx88-video.o cx88-vbi.o
|
|
cx8802-objs := cx88-mpeg.o
|
|
|
|
obj-$(CONFIG_VIDEO_CX88) += cx88xx.o cx8800.o cx8802.o cx88-blackbird.o
|
|
obj-$(CONFIG_VIDEO_CX88_DVB) += cx88-dvb.o
|
|
|
|
EXTRA_CFLAGS += -I$(src)/..
|
|
EXTRA_CFLAGS += -I$(srctree)/drivers/media/dvb/dvb-core
|
|
EXTRA_CFLAGS += -I$(srctree)/drivers/media/dvb/frontends
|
|
ifneq ($(CONFIG_DVB_CX22702),n)
|
|
EXTRA_CFLAGS += -DHAVE_CX22702=1
|
|
endif
|
|
ifneq ($(CONFIG_DVB_OR51132),n)
|
|
EXTRA_CFLAGS += -DHAVE_OR51132=1
|
|
endif
|
|
ifneq ($(CONFIG_DVB_LGDT330X),n)
|
|
EXTRA_CFLAGS += -DHAVE_LGDT330X=1
|
|
endif
|
|
ifneq ($(CONFIG_DVB_MT352),n)
|
|
EXTRA_CFLAGS += -DHAVE_MT352=1
|
|
endif
|