cb4805b5a5
since there have conflict between two headers icc-rpmh.h and icc-rpm.h, the function qcom_icc_xlate_extended() is declared in icc-rpmh.h thus it cannot be used by icc-rpm driver. Move the function to a new common file icc-common.c so that allow it to be called by multiple drivers. Signed-off-by: Leo Yan <leo.yan@linaro.org> Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Link: https://lore.kernel.org/r/20220712015929.2789881-3-leo.yan@linaro.org Signed-off-by: Georgi Djakov <djakov@kernel.org>
51 lines
2.1 KiB
Makefile
51 lines
2.1 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
obj-$(CONFIG_INTERCONNECT_QCOM) += interconnect_qcom.o
|
|
|
|
interconnect_qcom-y := icc-common.o
|
|
icc-bcm-voter-objs := bcm-voter.o
|
|
qnoc-msm8916-objs := msm8916.o
|
|
qnoc-msm8939-objs := msm8939.o
|
|
qnoc-msm8974-objs := msm8974.o
|
|
qnoc-msm8996-objs := msm8996.o
|
|
icc-osm-l3-objs := osm-l3.o
|
|
qnoc-qcm2290-objs := qcm2290.o
|
|
qnoc-qcs404-objs := qcs404.o
|
|
icc-rpmh-obj := icc-rpmh.o
|
|
qnoc-sc7180-objs := sc7180.o
|
|
qnoc-sc7280-objs := sc7280.o
|
|
qnoc-sc8180x-objs := sc8180x.o
|
|
qnoc-sc8280xp-objs := sc8280xp.o
|
|
qnoc-sdm660-objs := sdm660.o
|
|
qnoc-sdm845-objs := sdm845.o
|
|
qnoc-sdx55-objs := sdx55.o
|
|
qnoc-sdx65-objs := sdx65.o
|
|
qnoc-sm8150-objs := sm8150.o
|
|
qnoc-sm8250-objs := sm8250.o
|
|
qnoc-sm8350-objs := sm8350.o
|
|
qnoc-sm8450-objs := sm8450.o
|
|
icc-smd-rpm-objs := smd-rpm.o icc-rpm.o
|
|
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_BCM_VOTER) += icc-bcm-voter.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_MSM8916) += qnoc-msm8916.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_MSM8939) += qnoc-msm8939.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_MSM8974) += qnoc-msm8974.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_MSM8996) += qnoc-msm8996.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_OSM_L3) += icc-osm-l3.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_QCM2290) += qnoc-qcm2290.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_QCS404) += qnoc-qcs404.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_RPMH) += icc-rpmh.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_SC7180) += qnoc-sc7180.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_SC7280) += qnoc-sc7280.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_SC8180X) += qnoc-sc8180x.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_SC8280XP) += qnoc-sc8280xp.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_SDM660) += qnoc-sdm660.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_SDM845) += qnoc-sdm845.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_SDX55) += qnoc-sdx55.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_SDX65) += qnoc-sdx65.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_SM8150) += qnoc-sm8150.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_SM8250) += qnoc-sm8250.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_SM8350) += qnoc-sm8350.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_SM8450) += qnoc-sm8450.o
|
|
obj-$(CONFIG_INTERCONNECT_QCOM_SMD_RPM) += icc-smd-rpm.o
|