Makefile 866 字节
Newer Older
Z
Zhang Rui 已提交
1 2 3 4
#
# Makefile for sensor chip drivers.
#

5
obj-$(CONFIG_THERMAL)		+= thermal_sys.o
6
thermal_sys-y			+= thermal_core.o
Z
Zhang Rui 已提交
7 8

# governors
9 10 11
thermal_sys-$(CONFIG_THERMAL_GOV_FAIR_SHARE)	+= fair_share.o
thermal_sys-$(CONFIG_THERMAL_GOV_STEP_WISE)	+= step_wise.o
thermal_sys-$(CONFIG_THERMAL_GOV_USER_SPACE)	+= user_space.o
Z
Zhang Rui 已提交
12 13

# cpufreq cooling
14
thermal_sys-$(CONFIG_CPU_THERMAL)	+= cpu_cooling.o
Z
Zhang Rui 已提交
15 16 17

# platform thermal drivers
obj-$(CONFIG_SPEAR_THERMAL)	+= spear_thermal.o
18
obj-$(CONFIG_RCAR_THERMAL)	+= rcar_thermal.o
19
obj-$(CONFIG_KIRKWOOD_THERMAL)  += kirkwood_thermal.o
Z
Zhang Rui 已提交
20
obj-$(CONFIG_EXYNOS_THERMAL)	+= exynos_thermal.o
21
obj-$(CONFIG_DOVE_THERMAL)  	+= dove_thermal.o
22
obj-$(CONFIG_DB8500_THERMAL)	+= db8500_thermal.o
23
obj-$(CONFIG_ARMADA_THERMAL)	+= armada_thermal.o
24
obj-$(CONFIG_DB8500_CPUFREQ_COOLING)	+= db8500_cpufreq_cooling.o
25 26
obj-$(CONFIG_INTEL_POWERCLAMP)	+= intel_powerclamp.o