2005-04-17 02:20:36 +04:00
|
|
|
#
|
|
|
|
# Makefile for the kernel multimedia device drivers.
|
|
|
|
#
|
|
|
|
|
2016-07-01 13:33:10 +03:00
|
|
|
ifeq ($(CONFIG_MEDIA_CEC_EDID),y)
|
|
|
|
obj-$(CONFIG_MEDIA_SUPPORT) += cec-edid.o
|
|
|
|
endif
|
2016-06-17 15:13:08 +03:00
|
|
|
|
2009-12-09 14:40:00 +03:00
|
|
|
media-objs := media-device.o media-devnode.o media-entity.o
|
2009-12-09 14:39:56 +03:00
|
|
|
|
2012-08-25 02:44:44 +04:00
|
|
|
#
|
|
|
|
# I2C drivers should come before other drivers, otherwise they'll fail
|
|
|
|
# when compiled as builtin drivers
|
|
|
|
#
|
|
|
|
obj-y += i2c/ tuners/
|
|
|
|
obj-$(CONFIG_DVB_CORE) += dvb-frontends/
|
|
|
|
|
|
|
|
#
|
|
|
|
# Now, let's link-in the media core
|
|
|
|
#
|
2009-12-09 14:39:56 +03:00
|
|
|
ifeq ($(CONFIG_MEDIA_CONTROLLER),y)
|
|
|
|
obj-$(CONFIG_MEDIA_SUPPORT) += media.o
|
|
|
|
endif
|
|
|
|
|
2012-08-25 02:44:44 +04:00
|
|
|
obj-$(CONFIG_VIDEO_DEV) += v4l2-core/
|
|
|
|
obj-$(CONFIG_DVB_CORE) += dvb-core/
|
|
|
|
|
|
|
|
# There are both core and drivers at RC subtree - merge before drivers
|
|
|
|
obj-y += rc/
|
|
|
|
|
|
|
|
#
|
|
|
|
# Finally, merge the drivers that require the core
|
|
|
|
#
|
|
|
|
|
2014-12-02 18:40:33 +03:00
|
|
|
obj-y += common/ platform/ pci/ usb/ mmc/ firewire/
|
2012-08-25 02:44:44 +04:00
|
|
|
obj-$(CONFIG_VIDEO_DEV) += radio/
|
2008-04-30 04:38:44 +04:00
|
|
|
|