mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-03 09:37:03 +07:00
4860c73804
In practice, it is being hard to distinguish when a patch should go to staging tree or to the media tree. Better to distinguish it, by putting the media drivers at a separate staging directory. Newer staging drivers that include anything with "dvb*.h", "v4l2*.h" or "videodev2.h" should go to the drivers/staging/media tree. Acked-by: Greg Kroah-Hartman <gregkh@suse.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
15 lines
360 B
Makefile
15 lines
360 B
Makefile
#
|
|
# Makefile for the nGene device driver
|
|
#
|
|
|
|
ngene-objs := ngene-core.o ngene-i2c.o ngene-cards.o ngene-dvb.o
|
|
|
|
obj-$(CONFIG_DVB_NGENE) += ngene.o
|
|
|
|
ccflags-y += -Idrivers/media/dvb/dvb-core/
|
|
ccflags-y += -Idrivers/media/dvb/frontends/
|
|
ccflags-y += -Idrivers/media/common/tuners/
|
|
|
|
# For the staging CI driver cxd2099
|
|
ccflags-y += -Idrivers/staging/media/cxd2099/
|