rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | # SPDX-License-Identifier: GPL-2.0 |
| 2 | # |
| 3 | # Makefile for the kernel multimedia device drivers. |
| 4 | # |
| 5 | |
| 6 | media-objs := media-device.o media-devnode.o media-entity.o |
| 7 | |
| 8 | # |
| 9 | # I2C drivers should come before other drivers, otherwise they'll fail |
| 10 | # when compiled as builtin drivers |
| 11 | # |
| 12 | obj-y += i2c/ tuners/ |
| 13 | obj-$(CONFIG_DVB_CORE) += dvb-frontends/ |
| 14 | |
| 15 | # |
| 16 | # Now, let's link-in the media core |
| 17 | # |
| 18 | ifeq ($(CONFIG_MEDIA_CONTROLLER),y) |
| 19 | obj-$(CONFIG_MEDIA_SUPPORT) += media.o |
| 20 | endif |
| 21 | |
| 22 | obj-$(CONFIG_VIDEO_DEV) += v4l2-core/ |
| 23 | obj-$(CONFIG_DVB_CORE) += dvb-core/ |
| 24 | |
| 25 | # There are both core and drivers at RC subtree - merge before drivers |
| 26 | obj-y += rc/ |
| 27 | |
| 28 | obj-$(CONFIG_CEC_CORE) += cec/ |
| 29 | |
| 30 | # |
| 31 | # Finally, merge the drivers that require the core |
| 32 | # |
| 33 | |
| 34 | obj-y += common/ platform/ pci/ usb/ mmc/ firewire/ spi/ |
| 35 | obj-$(CONFIG_VIDEO_DEV) += radio/ |
| 36 | |