mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-04 17:44:14 +08:00
9a33a27e7f
Cleanup the ddbridge's dummy driver by removing the parts that aren't needed by ddbridge, adding it to the building system and changing the binding at the driver to use the newer function name. Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
14 lines
395 B
Makefile
14 lines
395 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the ddbridge device driver
|
|
#
|
|
|
|
ddbridge-objs := ddbridge-main.o ddbridge-core.o ddbridge-ci.o \
|
|
ddbridge-hw.o ddbridge-i2c.o ddbridge-max.o ddbridge-mci.o \
|
|
ddbridge-sx8.o
|
|
|
|
obj-$(CONFIG_DVB_DDBRIDGE) += ddbridge.o ddbridge-dummy-fe.o
|
|
|
|
ccflags-y += -I $(srctree)/drivers/media/dvb-frontends/
|
|
ccflags-y += -I $(srctree)/drivers/media/tuners/
|