brintos

brintos / linux-shallow public Read only

0
0
Text · 752 B · 20fac24 Raw
35 lines · plain
1# SPDX-License-Identifier: GPL-2.02#3# Makefile for the kernel multimedia device drivers.4#5 6#7# I2C drivers should come before other drivers, otherwise they'll fail8# when compiled as builtin drivers9#10obj-y += i2c/ tuners/11obj-$(CONFIG_DVB_CORE) += dvb-frontends/12 13#14# Now, let's link-in the media controller core15#16ifeq ($(CONFIG_MEDIA_CONTROLLER),y)17  obj-$(CONFIG_MEDIA_SUPPORT) += mc/18endif19 20obj-$(CONFIG_VIDEO_DEV) += v4l2-core/21obj-$(CONFIG_DVB_CORE) += dvb-core/22 23# There are both core and drivers at RC subtree - merge before drivers24obj-y += rc/25 26obj-$(CONFIG_CEC_CORE) += cec/27 28#29# Finally, merge the drivers that require the core30#31 32obj-y += common/ platform/ pci/ usb/ mmc/ firewire/ spi/ test-drivers/33obj-$(CONFIG_VIDEO_DEV) += radio/34 35