mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-29 11:42:36 +00:00

Before extending the driver with functions from the R-Car ISP core that will span multiple files move the existing driver to a separate directory. While at it rename the single source file to allow future files to be grouped by functions. Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se> Reviewed-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Link: https://lore.kernel.org/r/20250423163113.2961049-6-niklas.soderlund+renesas@ragnatech.se Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
18 lines
497 B
Makefile
18 lines
497 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Makefile for the Renesas capture/playback device drivers.
|
|
#
|
|
|
|
obj-y += rcar-isp/
|
|
obj-y += rcar-vin/
|
|
obj-y += rzg2l-cru/
|
|
obj-y += vsp1/
|
|
|
|
obj-$(CONFIG_VIDEO_RCAR_CSI2) += rcar-csi2.o
|
|
obj-$(CONFIG_VIDEO_RCAR_DRIF) += rcar_drif.o
|
|
obj-$(CONFIG_VIDEO_RENESAS_CEU) += renesas-ceu.o
|
|
obj-$(CONFIG_VIDEO_RENESAS_FCP) += rcar-fcp.o
|
|
obj-$(CONFIG_VIDEO_RENESAS_FDP1) += rcar_fdp1.o
|
|
obj-$(CONFIG_VIDEO_RENESAS_JPU) += rcar_jpu.o
|
|
obj-$(CONFIG_VIDEO_SH_VOU) += sh_vou.o
|