Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # Makefile for the kernel multimedia device drivers. |
| 3 | # |
| 4 | |
Hans Verkuil | 5bb2399a | 2016-07-01 07:33:10 -0300 | [diff] [blame] | 5 | ifeq ($(CONFIG_MEDIA_CEC_EDID),y) |
| 6 | obj-$(CONFIG_MEDIA_SUPPORT) += cec-edid.o |
| 7 | endif |
Hans Verkuil | 29fb44a | 2016-06-17 09:13:08 -0300 | [diff] [blame] | 8 | |
Laurent Pinchart | 53e269c | 2009-12-09 08:40:00 -0300 | [diff] [blame] | 9 | media-objs := media-device.o media-devnode.o media-entity.o |
Laurent Pinchart | cf4b921 | 2009-12-09 08:39:56 -0300 | [diff] [blame] | 10 | |
Mauro Carvalho Chehab | 1daae51 | 2012-08-24 19:44:44 -0300 | [diff] [blame] | 11 | # |
| 12 | # I2C drivers should come before other drivers, otherwise they'll fail |
| 13 | # when compiled as builtin drivers |
| 14 | # |
| 15 | obj-y += i2c/ tuners/ |
| 16 | obj-$(CONFIG_DVB_CORE) += dvb-frontends/ |
| 17 | |
| 18 | # |
| 19 | # Now, let's link-in the media core |
| 20 | # |
Laurent Pinchart | cf4b921 | 2009-12-09 08:39:56 -0300 | [diff] [blame] | 21 | ifeq ($(CONFIG_MEDIA_CONTROLLER),y) |
| 22 | obj-$(CONFIG_MEDIA_SUPPORT) += media.o |
| 23 | endif |
| 24 | |
Mauro Carvalho Chehab | 1daae51 | 2012-08-24 19:44:44 -0300 | [diff] [blame] | 25 | obj-$(CONFIG_VIDEO_DEV) += v4l2-core/ |
| 26 | obj-$(CONFIG_DVB_CORE) += dvb-core/ |
Mauro Carvalho Chehab | 7c91f06 | 2008-04-29 21:38:44 -0300 | [diff] [blame] | 27 | |
Mauro Carvalho Chehab | 1daae51 | 2012-08-24 19:44:44 -0300 | [diff] [blame] | 28 | # There are both core and drivers at RC subtree - merge before drivers |
| 29 | obj-y += rc/ |
| 30 | |
| 31 | # |
| 32 | # Finally, merge the drivers that require the core |
| 33 | # |
| 34 | |
Charles-Antoine Couret | 7aae6e2 | 2016-09-15 12:29:51 -0300 | [diff] [blame] | 35 | obj-y += common/ platform/ pci/ usb/ mmc/ firewire/ spi/ |
Mauro Carvalho Chehab | 1daae51 | 2012-08-24 19:44:44 -0300 | [diff] [blame] | 36 | obj-$(CONFIG_VIDEO_DEV) += radio/ |
| 37 | |