Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0
0002 #
0003 # Makefile for the kernel multimedia device drivers.
0004 #
0005 
0006 #
0007 # I2C drivers should come before other drivers, otherwise they'll fail
0008 # when compiled as builtin drivers
0009 #
0010 obj-y += i2c/ tuners/
0011 obj-$(CONFIG_DVB_CORE) += dvb-frontends/
0012 
0013 #
0014 # Now, let's link-in the media controller core
0015 #
0016 ifeq ($(CONFIG_MEDIA_CONTROLLER),y)
0017   obj-$(CONFIG_MEDIA_SUPPORT) += mc/
0018 endif
0019 
0020 obj-$(CONFIG_VIDEO_DEV) += v4l2-core/
0021 obj-$(CONFIG_DVB_CORE) += dvb-core/
0022 
0023 # There are both core and drivers at RC subtree - merge before drivers
0024 obj-y += rc/
0025 
0026 obj-$(CONFIG_CEC_CORE) += cec/
0027 
0028 #
0029 # Finally, merge the drivers that require the core
0030 #
0031 
0032 obj-y += common/ platform/ pci/ usb/ mmc/ firewire/ spi/ test-drivers/
0033 obj-$(CONFIG_VIDEO_DEV) += radio/
0034