From: Hyeonseong Gil Date: Fri, 24 Mar 2017 01:52:01 +0000 (+0900) Subject: [COMMON] thermal: Makfile: rearrange build sequence X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=57794c453ac7f0d7702acd7931f0c3bfb7319463;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git [COMMON] thermal: Makfile: rearrange build sequence To ensure the init sequences of each drivers, gpu_cooling and isp_cooling's build sequence modified Change-Id: I920d123f3574963fd99d0c86c76c42f2477c5086 Signed-off-by: Hyeonseong Gil --- diff --git a/drivers/thermal/Makefile b/drivers/thermal/Makefile index a8b70cface84..7541102a5b7a 100644 --- a/drivers/thermal/Makefile +++ b/drivers/thermal/Makefile @@ -27,10 +27,6 @@ thermal_sys-$(CONFIG_CLOCK_THERMAL) += clock_cooling.o # devfreq cooling thermal_sys-$(CONFIG_DEVFREQ_THERMAL) += devfreq_cooling.o -thermal_sys-$(CONFIG_GPU_THERMAL) += gpu_cooling.o - -thermal_sys-$(CONFIG_ISP_THERMAL) += isp_cooling.o - # platform thermal drivers obj-y += broadcom/ obj-$(CONFIG_QCOM_SPMI_TEMP_ALARM) += qcom-spmi-temp-alarm.o @@ -65,3 +61,6 @@ obj-$(CONFIG_MTK_THERMAL) += mtk_thermal.o obj-$(CONFIG_GENERIC_ADC_THERMAL) += thermal-generic-adc.o obj-$(CONFIG_ZX2967_THERMAL) += zx2967_thermal.o obj-$(CONFIG_UNIPHIER_THERMAL) += uniphier_thermal.o + +obj-$(CONFIG_GPU_THERMAL) += gpu_cooling.o +obj-$(CONFIG_ISP_THERMAL) += isp_cooling.o