Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 83f3c715 authored by Oliver Endriss's avatar Oliver Endriss Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB: ngene: Driver compiles now



Remove LNBH21 routines, disable code which broke compilation.

Signed-off-by: default avatarOliver Endriss <o.endriss@gmx.de>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent dae52d00
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -76,6 +76,10 @@ comment "Supported Mantis Adapters"
	depends on DVB_CORE && PCI && I2C
	source "drivers/media/dvb/mantis/Kconfig"

comment "Supported nGene Adapters"
	depends on DVB_CORE && PCI && I2C
	source "drivers/media/dvb/ngene/Kconfig"

comment "Supported DVB Frontends"
	depends on DVB_CORE
source "drivers/media/dvb/frontends/Kconfig"
+2 −1
Original line number Diff line number Diff line
@@ -14,6 +14,7 @@ obj-y := dvb-core/ \
		siano/		\
		dm1105/		\
		pt1/		\
		mantis/
		mantis/		\
		ngene/

obj-$(CONFIG_DVB_FIREDTV)	+= firewire/
+9 −0
Original line number Diff line number Diff line
config DVB_NGENE
	tristate "Micronas nGene support"
	depends on DVB_CORE && PCI && I2C
	select DVB_LNBP21 if !DVB_FE_CUSTOMISE
	select DVB_STV6110x if !DVB_FE_CUSTOMISE
	select DVB_STV090x if !DVB_FE_CUSTOMISE
	---help---
	  Support for Micronas PCI express cards with nGene bridge.
+11 −0
Original line number Diff line number Diff line
#
# Makefile for the nGene device driver
#

ngene-objs := ngene-core.o

obj-$(CONFIG_DVB_NGENE) += ngene.o

EXTRA_CFLAGS += -Idrivers/media/dvb/dvb-core/
EXTRA_CFLAGS += -Idrivers/media/dvb/frontends/
Loading