9d185d0417
Currently, we have three Kconfig options for thermal governors, aka, CONFIG_FAIR_SHARE, CONFIG_USER_SPACE and CONFIG_STEP_WISE. But these names are too generic that may bring confusion to users. Rename them to CONFIG_THERMAL_GOV_FAIR_SHARE, CONFIG_THERMAL_GOV_USER_SPACE, CONFIG_THERMAL_GOV_STEP_WISE to avoid the generic naming. Signed-off-by: Zhang Rui <rui.zhang@intel.com>
25 lines
751 B
Makefile
25 lines
751 B
Makefile
#
|
|
# Makefile for sensor chip drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_THERMAL) += thermal_sys.o
|
|
|
|
# governors
|
|
obj-$(CONFIG_THERMAL_GOV_FAIR_SHARE) += fair_share.o
|
|
obj-$(CONFIG_THERMAL_GOV_STEP_WISE) += step_wise.o
|
|
obj-$(CONFIG_THERMAL_GOV_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_KIRKWOOD_THERMAL) += kirkwood_thermal.o
|
|
obj-$(CONFIG_EXYNOS_THERMAL) += exynos_thermal.o
|
|
obj-$(CONFIG_DOVE_THERMAL) += dove_thermal.o
|
|
obj-$(CONFIG_DB8500_THERMAL) += db8500_thermal.o
|
|
obj-$(CONFIG_DB8500_CPUFREQ_COOLING) += db8500_cpufreq_cooling.o
|
|
obj-$(CONFIG_INTEL_POWERCLAMP) += intel_powerclamp.o
|
|
|