Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[media] DRX-K, TDA18271c2: Add build support

Add both drivers to Makefile and Kconfig.

Signed-off-by: Oliver Endriss <o.endriss@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>

authored by

Oliver Endriss and committed by
Mauro Carvalho Chehab
f678c3b6 ebc7de22

+24
+21
drivers/media/dvb/frontends/Kconfig
··· 49 49 help 50 50 A Silicon tuner that supports DVB-S and DVB-S2 modes 51 51 52 + comment "Multistandard (cable + terrestrial) frontends" 53 + depends on DVB_CORE 54 + 55 + config DVB_DRXK 56 + tristate "Micronas DRXK based" 57 + depends on DVB_CORE && I2C 58 + default m if DVB_FE_CUSTOMISE 59 + help 60 + Micronas DRX-K DVB-C/T demodulator. 61 + 62 + Say Y when you want to support this frontend. 63 + 64 + config DVB_TDA18271C2DD 65 + tristate "NXP TDA18271C2 silicon tuner" 66 + depends on DVB_CORE && I2C 67 + default m if DVB_FE_CUSTOMISE 68 + help 69 + NXP TDA18271 silicon tuner. 70 + 71 + Say Y when you want to support this tuner. 72 + 52 73 comment "DVB-S (satellite) frontends" 53 74 depends on DVB_CORE 54 75
+3
drivers/media/dvb/frontends/Makefile
··· 10 10 au8522-objs = au8522_dig.o au8522_decoder.o 11 11 drxd-objs = drxd_firm.o drxd_hard.o 12 12 cxd2820r-objs = cxd2820r_core.o cxd2820r_c.o cxd2820r_t.o cxd2820r_t2.o 13 + drxk-objs := drxk_hard.o 13 14 14 15 obj-$(CONFIG_DVB_PLL) += dvb-pll.o 15 16 obj-$(CONFIG_DVB_STV0299) += stv0299.o ··· 89 88 obj-$(CONFIG_DVB_IX2505V) += ix2505v.o 90 89 obj-$(CONFIG_DVB_STV0367) += stv0367.o 91 90 obj-$(CONFIG_DVB_CXD2820R) += cxd2820r.o 91 + obj-$(CONFIG_DVB_DRXK) += drxk.o 92 + obj-$(CONFIG_DVB_TDA18271C2DD) += tda18271c2dd.o 92 93