| .. | .. |
|---|
| 3 | 3 | # Makefile for the kernel multimedia device drivers. |
|---|
| 4 | 4 | # |
|---|
| 5 | 5 | |
|---|
| 6 | | -media-objs := media-device.o media-devnode.o media-entity.o |
|---|
| 7 | | - |
|---|
| 8 | 6 | # |
|---|
| 9 | 7 | # I2C drivers should come before other drivers, otherwise they'll fail |
|---|
| 10 | 8 | # when compiled as builtin drivers |
|---|
| .. | .. |
|---|
| 13 | 11 | obj-$(CONFIG_DVB_CORE) += dvb-frontends/ |
|---|
| 14 | 12 | |
|---|
| 15 | 13 | # |
|---|
| 16 | | -# Now, let's link-in the media core |
|---|
| 14 | +# Now, let's link-in the media controller core |
|---|
| 17 | 15 | # |
|---|
| 18 | 16 | ifeq ($(CONFIG_MEDIA_CONTROLLER),y) |
|---|
| 19 | | - obj-$(CONFIG_MEDIA_SUPPORT) += media.o |
|---|
| 17 | + obj-$(CONFIG_MEDIA_SUPPORT) += mc/ |
|---|
| 20 | 18 | endif |
|---|
| 21 | 19 | |
|---|
| 22 | 20 | obj-$(CONFIG_VIDEO_DEV) += v4l2-core/ |
|---|
| .. | .. |
|---|
| 31 | 29 | # Finally, merge the drivers that require the core |
|---|
| 32 | 30 | # |
|---|
| 33 | 31 | |
|---|
| 34 | | -obj-y += common/ platform/ pci/ usb/ mmc/ firewire/ spi/ |
|---|
| 32 | +obj-y += common/ platform/ pci/ usb/ mmc/ firewire/ spi/ test-drivers/ |
|---|
| 35 | 33 | obj-$(CONFIG_VIDEO_DEV) += radio/ |
|---|
| 36 | 34 | |
|---|