diff options
author | Devin Heitmueller <dheitmueller@kernellabs.com> | 2011-03-12 23:53:02 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-05-20 06:26:17 -0400 |
commit | 949a12e3a87281e38d3520823e7e171bbe45b448 (patch) | |
tree | 24478b337f7350121cb88190c0f1c81c69bb356b /drivers | |
parent | 126f1e61887085aa2c2cfa7644aee8295a94e1f7 (diff) |
[media] drxd: add driver to Makefile and Kconfig
Add the drxd to the Makefile and Kconfig
Signed-off-by: Devin Heitmueller <dheitmueller@kernellabs.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/dvb/frontends/Kconfig | 11 | ||||
-rw-r--r-- | drivers/media/dvb/frontends/Makefile | 2 |
2 files changed, 13 insertions, 0 deletions
diff --git a/drivers/media/dvb/frontends/Kconfig b/drivers/media/dvb/frontends/Kconfig index 83093d1f4f74..29ddeea2fffe 100644 --- a/drivers/media/dvb/frontends/Kconfig +++ b/drivers/media/dvb/frontends/Kconfig | |||
@@ -276,6 +276,17 @@ config DVB_DRX397XD | |||
276 | download/extract them, and then copy them to /usr/lib/hotplug/firmware | 276 | download/extract them, and then copy them to /usr/lib/hotplug/firmware |
277 | or /lib/firmware (depending on configuration of firmware hotplug). | 277 | or /lib/firmware (depending on configuration of firmware hotplug). |
278 | 278 | ||
279 | config DVB_DRXD | ||
280 | tristate "Micronas DRXD driver" | ||
281 | depends on DVB_CORE && I2C | ||
282 | default m if DVB_FE_CUSTOMISE | ||
283 | help | ||
284 | A DVB-T tuner module. Say Y when you want to support this frontend. | ||
285 | |||
286 | Note: this driver was based on vendor driver reference code (released | ||
287 | under the GPL) as opposed to the existing drx397xd driver, which | ||
288 | was written via reverse engineering. | ||
289 | |||
279 | config DVB_L64781 | 290 | config DVB_L64781 |
280 | tristate "LSI L64781" | 291 | tristate "LSI L64781" |
281 | depends on DVB_CORE && I2C | 292 | depends on DVB_CORE && I2C |
diff --git a/drivers/media/dvb/frontends/Makefile b/drivers/media/dvb/frontends/Makefile index 3b0c4bdc4b2b..fc08b6902a22 100644 --- a/drivers/media/dvb/frontends/Makefile +++ b/drivers/media/dvb/frontends/Makefile | |||
@@ -8,6 +8,7 @@ EXTRA_CFLAGS += -Idrivers/media/common/tuners/ | |||
8 | stb0899-objs = stb0899_drv.o stb0899_algo.o | 8 | stb0899-objs = stb0899_drv.o stb0899_algo.o |
9 | stv0900-objs = stv0900_core.o stv0900_sw.o | 9 | stv0900-objs = stv0900_core.o stv0900_sw.o |
10 | au8522-objs = au8522_dig.o au8522_decoder.o | 10 | au8522-objs = au8522_dig.o au8522_decoder.o |
11 | drxd-objs = drxd_firm.o drxd_hard.o | ||
11 | 12 | ||
12 | obj-$(CONFIG_DVB_PLL) += dvb-pll.o | 13 | obj-$(CONFIG_DVB_PLL) += dvb-pll.o |
13 | obj-$(CONFIG_DVB_STV0299) += stv0299.o | 14 | obj-$(CONFIG_DVB_STV0299) += stv0299.o |
@@ -37,6 +38,7 @@ obj-$(CONFIG_DVB_ZL10039) += zl10039.o | |||
37 | obj-$(CONFIG_DVB_ZL10353) += zl10353.o | 38 | obj-$(CONFIG_DVB_ZL10353) += zl10353.o |
38 | obj-$(CONFIG_DVB_CX22702) += cx22702.o | 39 | obj-$(CONFIG_DVB_CX22702) += cx22702.o |
39 | obj-$(CONFIG_DVB_DRX397XD) += drx397xD.o | 40 | obj-$(CONFIG_DVB_DRX397XD) += drx397xD.o |
41 | obj-$(CONFIG_DVB_DRXD) += drxd.o | ||
40 | obj-$(CONFIG_DVB_TDA10021) += tda10021.o | 42 | obj-$(CONFIG_DVB_TDA10021) += tda10021.o |
41 | obj-$(CONFIG_DVB_TDA10023) += tda10023.o | 43 | obj-$(CONFIG_DVB_TDA10023) += tda10023.o |
42 | obj-$(CONFIG_DVB_STV0297) += stv0297.o | 44 | obj-$(CONFIG_DVB_STV0297) += stv0297.o |