mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-06 13:09:58 +00:00

The ti-vpe/ sub-directory does not only contain the VPE-specific things. It also contains the CAL driver, which is a completely different subsystem. This is also not a good place to add new drivers for other TI platforms since they will all get mixed up. Separate the VPE and CAL parts into different sub-directories and rename the ti-vpe/ sub-directory to ti/. This is now the place where new TI platform drivers can be added. [mchehab: rebased to apple on the top of media/platform/Kconfig series] Signed-off-by: Pratyush Yadav <p.yadav@ti.com> Reviewed-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
13 lines
317 B
Makefile
13 lines
317 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_VIDEO_TI_VPE) += ti-vpe.o
|
|
obj-$(CONFIG_VIDEO_TI_VPDMA) += ti-vpdma.o
|
|
obj-$(CONFIG_VIDEO_TI_SC) += ti-sc.o
|
|
obj-$(CONFIG_VIDEO_TI_CSC) += ti-csc.o
|
|
|
|
ti-vpe-y := vpe.o
|
|
ti-vpdma-y := vpdma.o
|
|
ti-sc-y := sc.o
|
|
ti-csc-y := csc.o
|
|
|
|
ccflags-$(CONFIG_VIDEO_TI_VPE_DEBUG) += -DDEBUG
|