af30d4f36e
Implementation of media controller centric device configuration will add code to the CAMERARX support section, which is already quite big. Move it to a separate file to make the code more manageable. No functional change is included. The cal_camerarx_init_regmap() function is kept in cal.c and renamed to cal_init_camerarx_regmap() as it's not specific to one CAMERARX instance, but related to the whole CAL device. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Benoit Parrot <bparrot@ti.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
17 lines
403 B
Makefile
17 lines
403 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
|
|
|
|
obj-$(CONFIG_VIDEO_TI_CAL) += ti-cal.o
|
|
|
|
ti-cal-y := cal.o cal-camerarx.o cal-video.o
|