]>
Commit | Line | Data |
---|---|---|
203d3d4a ZR |
1 | # |
2 | # Makefile for sensor chip drivers. | |
3 | # | |
4 | ||
63c4ec90 | 5 | obj-$(CONFIG_THERMAL) += thermal_sys.o |
5fc024ab | 6 | thermal_sys-y += thermal_core.o |
445110e9 ZR |
7 | |
8 | # governors | |
80a26a5c ZR |
9 | thermal_sys-$(CONFIG_THERMAL_GOV_FAIR_SHARE) += fair_share.o |
10 | thermal_sys-$(CONFIG_THERMAL_GOV_STEP_WISE) += step_wise.o | |
11 | thermal_sys-$(CONFIG_THERMAL_GOV_USER_SPACE) += user_space.o | |
445110e9 ZR |
12 | |
13 | # cpufreq cooling | |
bbf7fc88 | 14 | thermal_sys-$(CONFIG_CPU_THERMAL) += cpu_cooling.o |
445110e9 ZR |
15 | |
16 | # platform thermal drivers | |
17 | obj-$(CONFIG_SPEAR_THERMAL) += spear_thermal.o | |
1e426ffd | 18 | obj-$(CONFIG_RCAR_THERMAL) += rcar_thermal.o |
7060aa36 | 19 | obj-$(CONFIG_KIRKWOOD_THERMAL) += kirkwood_thermal.o |
445110e9 | 20 | obj-$(CONFIG_EXYNOS_THERMAL) += exynos_thermal.o |
74ffa64c | 21 | obj-$(CONFIG_DOVE_THERMAL) += dove_thermal.o |
aa1acb04 | 22 | obj-$(CONFIG_DB8500_THERMAL) += db8500_thermal.o |
fa0d654c | 23 | obj-$(CONFIG_ARMADA_THERMAL) += armada_thermal.o |
aa1acb04 | 24 | obj-$(CONFIG_DB8500_CPUFREQ_COOLING) += db8500_cpufreq_cooling.o |
d6d71ee4 | 25 | obj-$(CONFIG_INTEL_POWERCLAMP) += intel_powerclamp.o |
f1a18a10 | 26 | obj-$(CONFIG_X86_PKG_TEMP_THERMAL) += x86_pkg_temp_thermal.o |
eb982001 | 27 | obj-$(CONFIG_TI_SOC_THERMAL) += ti-soc-thermal/ |