aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/thermal
diff options
context:
space:
mode:
authorZhang Rui <rui.zhang@intel.com>2012-11-15 03:07:46 -0500
committerZhang Rui <rui.zhang@intel.com>2012-11-15 07:41:47 -0500
commit445110e9d05e693c5e511717a010969175878754 (patch)
tree16c8db87796a524e13109ecd9ef7f30a5b68b950 /drivers/thermal
parentec54c74c8fb33a4317ea899f0d4dd49fb5f854ae (diff)
drivers/thermal/Makefile refactor
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Diffstat (limited to 'drivers/thermal')
-rw-r--r--drivers/thermal/Makefile18
1 files changed, 12 insertions, 6 deletions
diff --git a/drivers/thermal/Makefile b/drivers/thermal/Makefile
index e5f79747fa94..0b6b048f236d 100644
--- a/drivers/thermal/Makefile
+++ b/drivers/thermal/Makefile
@@ -3,10 +3,16 @@
3# 3#
4 4
5obj-$(CONFIG_THERMAL) += thermal_sys.o 5obj-$(CONFIG_THERMAL) += thermal_sys.o
6obj-$(CONFIG_CPU_THERMAL) += cpu_cooling.o 6
7obj-$(CONFIG_SPEAR_THERMAL) += spear_thermal.o 7# governors
8obj-$(CONFIG_FAIR_SHARE) += fair_share.o
9obj-$(CONFIG_STEP_WISE) += step_wise.o
10obj-$(CONFIG_USER_SPACE) += user_space.o
11
12# cpufreq cooling
13obj-$(CONFIG_CPU_THERMAL) += cpu_cooling.o
14
15# platform thermal drivers
16obj-$(CONFIG_SPEAR_THERMAL) += spear_thermal.o
8obj-$(CONFIG_RCAR_THERMAL) += rcar_thermal.o 17obj-$(CONFIG_RCAR_THERMAL) += rcar_thermal.o
9obj-$(CONFIG_EXYNOS_THERMAL) += exynos_thermal.o 18obj-$(CONFIG_EXYNOS_THERMAL) += exynos_thermal.o
10obj-$(CONFIG_FAIR_SHARE) += fair_share.o
11obj-$(CONFIG_STEP_WISE) += step_wise.o
12obj-$(CONFIG_USER_SPACE) += user_space.o