mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-16 10:54:09 +08:00
989cf18ed0
This driver is really old, from devices that aren't manufactured anymore for more than a decade. Also, the decoder supports only MPEG2, with is not compatible with several modern DVB streams. It is also the only upstream driver relying on the DVB "full-featured" API. Some changes at the frontend drivers seem to have broken it without anybody noticing. Due to that, it sounds it is time to retire the driver for good. Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
14 lines
423 B
Makefile
14 lines
423 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the kernel SAA7146 FULL TS DVB device driver
|
|
#
|
|
|
|
obj-$(CONFIG_DVB_BUDGET_CORE) += budget-core.o
|
|
obj-$(CONFIG_DVB_BUDGET) += budget.o
|
|
obj-$(CONFIG_DVB_BUDGET_AV) += budget-av.o
|
|
obj-$(CONFIG_DVB_BUDGET_CI) += budget-ci.o
|
|
|
|
ccflags-y += -I $(srctree)/drivers/media/dvb-frontends/
|
|
ccflags-y += -I $(srctree)/drivers/media/tuners
|
|
ccflags-y += -I $(srctree)/drivers/media/common
|