diff options
author | Zhang Rui <rui.zhang@intel.com> | 2012-11-15 03:07:46 -0500 |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2012-11-15 07:41:47 -0500 |
commit | 445110e9d05e693c5e511717a010969175878754 (patch) | |
tree | 16c8db87796a524e13109ecd9ef7f30a5b68b950 /drivers/thermal | |
parent | ec54c74c8fb33a4317ea899f0d4dd49fb5f854ae (diff) |
drivers/thermal/Makefile refactor
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Diffstat (limited to 'drivers/thermal')
-rw-r--r-- | drivers/thermal/Makefile | 18 |
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 | ||
5 | obj-$(CONFIG_THERMAL) += thermal_sys.o | 5 | obj-$(CONFIG_THERMAL) += thermal_sys.o |
6 | obj-$(CONFIG_CPU_THERMAL) += cpu_cooling.o | 6 | |
7 | obj-$(CONFIG_SPEAR_THERMAL) += spear_thermal.o | 7 | # governors |
8 | obj-$(CONFIG_FAIR_SHARE) += fair_share.o | ||
9 | obj-$(CONFIG_STEP_WISE) += step_wise.o | ||
10 | obj-$(CONFIG_USER_SPACE) += user_space.o | ||
11 | |||
12 | # cpufreq cooling | ||
13 | obj-$(CONFIG_CPU_THERMAL) += cpu_cooling.o | ||
14 | |||
15 | # platform thermal drivers | ||
16 | obj-$(CONFIG_SPEAR_THERMAL) += spear_thermal.o | ||
8 | obj-$(CONFIG_RCAR_THERMAL) += rcar_thermal.o | 17 | obj-$(CONFIG_RCAR_THERMAL) += rcar_thermal.o |
9 | obj-$(CONFIG_EXYNOS_THERMAL) += exynos_thermal.o | 18 | obj-$(CONFIG_EXYNOS_THERMAL) += exynos_thermal.o |
10 | obj-$(CONFIG_FAIR_SHARE) += fair_share.o | ||
11 | obj-$(CONFIG_STEP_WISE) += step_wise.o | ||
12 | obj-$(CONFIG_USER_SPACE) += user_space.o | ||