mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-19 22:11:22 +00:00

In order to prepare for supporting the SM8650 SoC, move the iris_platform_sm8550.c file into iris_platform_gen2.c that will contain all the common HFI GEN2x structures. Reviewed-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org> Tested-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org> # x1e Dell Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org> Reviewed-by: Vikash Garodia <quic_vgarodia@quicinc.com> Signed-off-by: Bryan O'Donoghue <bod@kernel.org> Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
31 lines
899 B
Makefile
31 lines
899 B
Makefile
qcom-iris-objs += \
|
|
iris_buffer.o \
|
|
iris_core.o \
|
|
iris_ctrls.o \
|
|
iris_firmware.o \
|
|
iris_hfi_common.o \
|
|
iris_hfi_gen1_command.o \
|
|
iris_hfi_gen1_response.o \
|
|
iris_hfi_gen2_command.o \
|
|
iris_hfi_gen2_packet.o \
|
|
iris_hfi_gen2_response.o \
|
|
iris_hfi_queue.o \
|
|
iris_platform_gen2.o \
|
|
iris_power.o \
|
|
iris_probe.o \
|
|
iris_resources.o \
|
|
iris_state.o \
|
|
iris_utils.o \
|
|
iris_vidc.o \
|
|
iris_vb2.o \
|
|
iris_vdec.o \
|
|
iris_vpu2.o \
|
|
iris_vpu3x.o \
|
|
iris_vpu_buffer.o \
|
|
iris_vpu_common.o \
|
|
|
|
ifeq ($(CONFIG_VIDEO_QCOM_VENUS),)
|
|
qcom-iris-objs += iris_platform_sm8250.o
|
|
endif
|
|
|
|
obj-$(CONFIG_VIDEO_QCOM_IRIS) += qcom-iris.o
|