diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2013-04-04 08:54:09 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-04-08 07:02:30 -0400 |
commit | a0ea048a6f72fbe9083b52ba26cd642e23ca026c (patch) | |
tree | 745df02bff5653d39678c1a438afc21d3c987cf6 /drivers/cpufreq/Kconfig.arm | |
parent | 8a67f0ef2b684b34162d39e8f436fe39e9635a19 (diff) |
cpufreq: ARM: Arrange drivers in alphabetical order
Normally we keep drivers in alphabetical inside Kconfig and Makefile and over
time this was broken for ARM cpufreq drivers. Fix it.
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Acked-by: Stephen Warren <swarren@nvidia.com>
Tested-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/cpufreq/Kconfig.arm')
-rw-r--r-- | drivers/cpufreq/Kconfig.arm | 116 |
1 files changed, 58 insertions, 58 deletions
diff --git a/drivers/cpufreq/Kconfig.arm b/drivers/cpufreq/Kconfig.arm index 87b7e48698d0..25d866a32f51 100644 --- a/drivers/cpufreq/Kconfig.arm +++ b/drivers/cpufreq/Kconfig.arm | |||
@@ -14,6 +14,64 @@ config ARM_DT_BL_CPUFREQ | |||
14 | This enables the Generic CPUfreq driver for ARM big.LITTLE platform. | 14 | This enables the Generic CPUfreq driver for ARM big.LITTLE platform. |
15 | This gets frequency tables from DT. | 15 | This gets frequency tables from DT. |
16 | 16 | ||
17 | config ARM_EXYNOS_CPUFREQ | ||
18 | bool "SAMSUNG EXYNOS SoCs" | ||
19 | depends on ARCH_EXYNOS | ||
20 | default y | ||
21 | help | ||
22 | This adds the CPUFreq driver common part for Samsung | ||
23 | EXYNOS SoCs. | ||
24 | |||
25 | If in doubt, say N. | ||
26 | |||
27 | config ARM_EXYNOS4210_CPUFREQ | ||
28 | def_bool CPU_EXYNOS4210 | ||
29 | help | ||
30 | This adds the CPUFreq driver for Samsung EXYNOS4210 | ||
31 | SoC (S5PV310 or S5PC210). | ||
32 | |||
33 | config ARM_EXYNOS4X12_CPUFREQ | ||
34 | def_bool (SOC_EXYNOS4212 || SOC_EXYNOS4412) | ||
35 | help | ||
36 | This adds the CPUFreq driver for Samsung EXYNOS4X12 | ||
37 | SoC (EXYNOS4212 or EXYNOS4412). | ||
38 | |||
39 | config ARM_EXYNOS5250_CPUFREQ | ||
40 | def_bool SOC_EXYNOS5250 | ||
41 | help | ||
42 | This adds the CPUFreq driver for Samsung EXYNOS5250 | ||
43 | SoC. | ||
44 | |||
45 | config ARM_HIGHBANK_CPUFREQ | ||
46 | tristate "Calxeda Highbank-based" | ||
47 | depends on ARCH_HIGHBANK | ||
48 | select CPU_FREQ_TABLE | ||
49 | select GENERIC_CPUFREQ_CPU0 | ||
50 | select PM_OPP | ||
51 | select REGULATOR | ||
52 | |||
53 | default m | ||
54 | help | ||
55 | This adds the CPUFreq driver for Calxeda Highbank SoC | ||
56 | based boards. | ||
57 | |||
58 | If in doubt, say N. | ||
59 | |||
60 | config ARM_IMX6Q_CPUFREQ | ||
61 | tristate "Freescale i.MX6Q cpufreq support" | ||
62 | depends on SOC_IMX6Q | ||
63 | depends on REGULATOR_ANATOP | ||
64 | help | ||
65 | This adds cpufreq driver support for Freescale i.MX6Q SOC. | ||
66 | |||
67 | If in doubt, say N. | ||
68 | |||
69 | config ARM_KIRKWOOD_CPUFREQ | ||
70 | def_bool ARCH_KIRKWOOD && OF | ||
71 | help | ||
72 | This adds the CPUFreq driver for Marvell Kirkwood | ||
73 | SoCs. | ||
74 | |||
17 | config ARM_OMAP2PLUS_CPUFREQ | 75 | config ARM_OMAP2PLUS_CPUFREQ |
18 | bool "TI OMAP2+" | 76 | bool "TI OMAP2+" |
19 | depends on ARCH_OMAP2PLUS | 77 | depends on ARCH_OMAP2PLUS |
@@ -61,67 +119,9 @@ config ARM_S5PV210_CPUFREQ | |||
61 | 119 | ||
62 | If in doubt, say N. | 120 | If in doubt, say N. |
63 | 121 | ||
64 | config ARM_EXYNOS_CPUFREQ | ||
65 | bool "SAMSUNG EXYNOS SoCs" | ||
66 | depends on ARCH_EXYNOS | ||
67 | default y | ||
68 | help | ||
69 | This adds the CPUFreq driver common part for Samsung | ||
70 | EXYNOS SoCs. | ||
71 | |||
72 | If in doubt, say N. | ||
73 | |||
74 | config ARM_EXYNOS4210_CPUFREQ | ||
75 | def_bool CPU_EXYNOS4210 | ||
76 | help | ||
77 | This adds the CPUFreq driver for Samsung EXYNOS4210 | ||
78 | SoC (S5PV310 or S5PC210). | ||
79 | |||
80 | config ARM_EXYNOS4X12_CPUFREQ | ||
81 | def_bool (SOC_EXYNOS4212 || SOC_EXYNOS4412) | ||
82 | help | ||
83 | This adds the CPUFreq driver for Samsung EXYNOS4X12 | ||
84 | SoC (EXYNOS4212 or EXYNOS4412). | ||
85 | |||
86 | config ARM_EXYNOS5250_CPUFREQ | ||
87 | def_bool SOC_EXYNOS5250 | ||
88 | help | ||
89 | This adds the CPUFreq driver for Samsung EXYNOS5250 | ||
90 | SoC. | ||
91 | |||
92 | config ARM_KIRKWOOD_CPUFREQ | ||
93 | def_bool ARCH_KIRKWOOD && OF | ||
94 | help | ||
95 | This adds the CPUFreq driver for Marvell Kirkwood | ||
96 | SoCs. | ||
97 | |||
98 | config ARM_IMX6Q_CPUFREQ | ||
99 | tristate "Freescale i.MX6Q cpufreq support" | ||
100 | depends on SOC_IMX6Q | ||
101 | depends on REGULATOR_ANATOP | ||
102 | help | ||
103 | This adds cpufreq driver support for Freescale i.MX6Q SOC. | ||
104 | |||
105 | If in doubt, say N. | ||
106 | |||
107 | config ARM_SPEAR_CPUFREQ | 122 | config ARM_SPEAR_CPUFREQ |
108 | bool "SPEAr CPUFreq support" | 123 | bool "SPEAr CPUFreq support" |
109 | depends on PLAT_SPEAR | 124 | depends on PLAT_SPEAR |
110 | default y | 125 | default y |
111 | help | 126 | help |
112 | This adds the CPUFreq driver support for SPEAr SOCs. | 127 | This adds the CPUFreq driver support for SPEAr SOCs. |
113 | |||
114 | config ARM_HIGHBANK_CPUFREQ | ||
115 | tristate "Calxeda Highbank-based" | ||
116 | depends on ARCH_HIGHBANK | ||
117 | select CPU_FREQ_TABLE | ||
118 | select GENERIC_CPUFREQ_CPU0 | ||
119 | select PM_OPP | ||
120 | select REGULATOR | ||
121 | |||
122 | default m | ||
123 | help | ||
124 | This adds the CPUFreq driver for Calxeda Highbank SoC | ||
125 | based boards. | ||
126 | |||
127 | If in doubt, say N. | ||