]> git.karo-electronics.de Git - linux-beck.git/commitdiff
drivers/thermal/Makefile refactor
authorZhang Rui <rui.zhang@intel.com>
Thu, 15 Nov 2012 08:07:46 +0000 (16:07 +0800)
committerZhang Rui <rui.zhang@intel.com>
Thu, 15 Nov 2012 12:41:47 +0000 (20:41 +0800)
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
drivers/thermal/Makefile

index e5f79747fa943bd480cb9ec2bf3b30fc0c8c2004..0b6b048f236d0016f1802ff843e4124e69b2b78a 100644 (file)
@@ -3,10 +3,16 @@
 #
 
 obj-$(CONFIG_THERMAL)          += thermal_sys.o
-obj-$(CONFIG_CPU_THERMAL)              += cpu_cooling.o
-obj-$(CONFIG_SPEAR_THERMAL)            += spear_thermal.o
+
+# governors
+obj-$(CONFIG_FAIR_SHARE)       += fair_share.o
+obj-$(CONFIG_STEP_WISE)                += step_wise.o
+obj-$(CONFIG_USER_SPACE)       += user_space.o
+
+# cpufreq cooling
+obj-$(CONFIG_CPU_THERMAL)      += cpu_cooling.o
+
+# platform thermal drivers
+obj-$(CONFIG_SPEAR_THERMAL)    += spear_thermal.o
 obj-$(CONFIG_RCAR_THERMAL)     += rcar_thermal.o
-obj-$(CONFIG_EXYNOS_THERMAL)           += exynos_thermal.o
-obj-$(CONFIG_FAIR_SHARE)               += fair_share.o
-obj-$(CONFIG_STEP_WISE)                        += step_wise.o
-obj-$(CONFIG_USER_SPACE)               += user_space.o
+obj-$(CONFIG_EXYNOS_THERMAL)   += exynos_thermal.o