diff options
author | Zhang Rui <rui.zhang@intel.com> | 2013-02-08 07:33:42 -0500 |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2013-02-08 07:33:42 -0500 |
commit | 9d185d0417e518fd9cfce90ec2ad75f70771bbaa (patch) | |
tree | f84501137535c9630725d346aa72b62a09f56161 /drivers/thermal/Kconfig | |
parent | ce760ed3f440cfa51785c64dad9b4bd87673bb11 (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/Kconfig | 12 |
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 | ||
30 | config THERMAL_DEFAULT_GOV_STEP_WISE | 30 | config 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 | ||
37 | config THERMAL_DEFAULT_GOV_FAIR_SHARE | 37 | config 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 | ||
45 | config THERMAL_DEFAULT_GOV_USER_SPACE | 45 | config 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 | ||
52 | endchoice | 52 | endchoice |
53 | 53 | ||
54 | config FAIR_SHARE | 54 | config 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 | ||
59 | config STEP_WISE | 59 | config 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 | ||
64 | config USER_SPACE | 64 | config 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. |