aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/thermal/Kconfig
diff options
context:
space:
mode:
authorZhang Rui <rui.zhang@intel.com>2013-02-08 07:33:42 -0500
committerZhang Rui <rui.zhang@intel.com>2013-02-08 07:33:42 -0500
commit9d185d0417e518fd9cfce90ec2ad75f70771bbaa (patch)
treef84501137535c9630725d346aa72b62a09f56161 /drivers/thermal/Kconfig
parentce760ed3f440cfa51785c64dad9b4bd87673bb11 (diff)
Thermal: rename thermal governor Kconfig option to avoid generic naming
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>
Diffstat (limited to 'drivers/thermal/Kconfig')
-rw-r--r--drivers/thermal/Kconfig12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/thermal/Kconfig b/drivers/thermal/Kconfig
index 24d913aa1003..a764f165b589 100644
--- a/drivers/thermal/Kconfig
+++ b/drivers/thermal/Kconfig
@@ -29,14 +29,14 @@ choice
29 29
30config THERMAL_DEFAULT_GOV_STEP_WISE 30config THERMAL_DEFAULT_GOV_STEP_WISE
31 bool "step_wise" 31 bool "step_wise"
32 select STEP_WISE 32 select THERMAL_GOV_STEP_WISE
33 help 33 help
34 Use the step_wise governor as default. This throttles the 34 Use the step_wise governor as default. This throttles the
35 devices one step at a time. 35 devices one step at a time.
36 36
37config THERMAL_DEFAULT_GOV_FAIR_SHARE 37config THERMAL_DEFAULT_GOV_FAIR_SHARE
38 bool "fair_share" 38 bool "fair_share"
39 select FAIR_SHARE 39 select THERMAL_GOV_FAIR_SHARE
40 help 40 help
41 Use the fair_share governor as default. This throttles the 41 Use the fair_share governor as default. This throttles the
42 devices based on their 'contribution' to a zone. The 42 devices based on their 'contribution' to a zone. The
@@ -44,24 +44,24 @@ config THERMAL_DEFAULT_GOV_FAIR_SHARE
44 44
45config THERMAL_DEFAULT_GOV_USER_SPACE 45config THERMAL_DEFAULT_GOV_USER_SPACE
46 bool "user_space" 46 bool "user_space"
47 select USER_SPACE 47 select THERMAL_GOV_USER_SPACE
48 help 48 help
49 Select this if you want to let the user space manage the 49 Select this if you want to let the user space manage the
50 lpatform thermals. 50 lpatform thermals.
51 51
52endchoice 52endchoice
53 53
54config FAIR_SHARE 54config THERMAL_GOV_FAIR_SHARE
55 bool "Fair-share thermal governor" 55 bool "Fair-share thermal governor"
56 help 56 help
57 Enable this to manage platform thermals using fair-share governor. 57 Enable this to manage platform thermals using fair-share governor.
58 58
59config STEP_WISE 59config THERMAL_GOV_STEP_WISE
60 bool "Step_wise thermal governor" 60 bool "Step_wise thermal governor"
61 help 61 help
62 Enable this to manage platform thermals using a simple linear 62 Enable this to manage platform thermals using a simple linear
63 63
64config USER_SPACE 64config THERMAL_GOV_USER_SPACE
65 bool "User_space thermal governor" 65 bool "User_space thermal governor"
66 help 66 help
67 Enable this to let the user space manage the platform thermals. 67 Enable this to let the user space manage the platform thermals.