mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 16:12:02 +00:00
176fb0d108
The media_device structure abstracts functions common to all kind of media devices (v4l2, dvb, alsa, ...). It manages media entities and offers a userspace API to discover and configure the media device internal topology. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Acked-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
15 lines
283 B
Makefile
15 lines
283 B
Makefile
#
|
|
# Makefile for the kernel multimedia device drivers.
|
|
#
|
|
|
|
media-objs := media-device.o media-devnode.o
|
|
|
|
ifeq ($(CONFIG_MEDIA_CONTROLLER),y)
|
|
obj-$(CONFIG_MEDIA_SUPPORT) += media.o
|
|
endif
|
|
|
|
obj-y += common/ rc/ video/
|
|
|
|
obj-$(CONFIG_VIDEO_DEV) += radio/
|
|
obj-$(CONFIG_DVB_CORE) += dvb/
|