The VPDMA (Video Port DMA) as found in devices such as DRA7xx is used for both the Video Processing Engine (VPE) and the Video Input Port (VIP). In preparation for this we need to turn vpdma into its own kernel module. Signed-off-by: Benoit Parrot <bparrot@ti.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
12 lines
242 B
Makefile
12 lines
242 B
Makefile
obj-$(CONFIG_VIDEO_TI_VPE) += ti-vpe.o
|
|
obj-$(CONFIG_VIDEO_TI_VPDMA) += ti-vpdma.o
|
|
|
|
ti-vpe-y := vpe.o sc.o csc.o
|
|
ti-vpdma-y := vpdma.o
|
|
|
|
ccflags-$(CONFIG_VIDEO_TI_VPE_DEBUG) += -DDEBUG
|
|
|
|
obj-$(CONFIG_VIDEO_TI_CAL) += ti-cal.o
|
|
|
|
ti-cal-y := cal.o
|