hc
2024-05-13 9d77db3c730780c8ef5ccd4b66403ff5675cfe4e
kernel/drivers/media/Makefile
....@@ -3,8 +3,6 @@
33 # Makefile for the kernel multimedia device drivers.
44 #
55
6
-media-objs := media-device.o media-devnode.o media-entity.o
7
-
86 #
97 # I2C drivers should come before other drivers, otherwise they'll fail
108 # when compiled as builtin drivers
....@@ -13,10 +11,10 @@
1311 obj-$(CONFIG_DVB_CORE) += dvb-frontends/
1412
1513 #
16
-# Now, let's link-in the media core
14
+# Now, let's link-in the media controller core
1715 #
1816 ifeq ($(CONFIG_MEDIA_CONTROLLER),y)
19
- obj-$(CONFIG_MEDIA_SUPPORT) += media.o
17
+ obj-$(CONFIG_MEDIA_SUPPORT) += mc/
2018 endif
2119
2220 obj-$(CONFIG_VIDEO_DEV) += v4l2-core/
....@@ -31,6 +29,6 @@
3129 # Finally, merge the drivers that require the core
3230 #
3331
34
-obj-y += common/ platform/ pci/ usb/ mmc/ firewire/ spi/
32
+obj-y += common/ platform/ pci/ usb/ mmc/ firewire/ spi/ test-drivers/
3533 obj-$(CONFIG_VIDEO_DEV) += radio/
3634