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 | |
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>
-rw-r--r-- | drivers/cpufreq/Kconfig.arm | 116 | ||||
-rw-r--r-- | drivers/cpufreq/Makefile | 10 |
2 files changed, 63 insertions, 63 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. | ||
diff --git a/drivers/cpufreq/Makefile b/drivers/cpufreq/Makefile index ba9a3e1b1e69..2c2550439279 100644 --- a/drivers/cpufreq/Makefile +++ b/drivers/cpufreq/Makefile | |||
@@ -50,18 +50,18 @@ obj-$(CONFIG_ARM_BIG_LITTLE_CPUFREQ) += arm_big_little.o | |||
50 | obj-$(CONFIG_ARM_DT_BL_CPUFREQ) += arm_big_little_dt.o | 50 | obj-$(CONFIG_ARM_DT_BL_CPUFREQ) += arm_big_little_dt.o |
51 | 51 | ||
52 | obj-$(CONFIG_UX500_SOC_DB8500) += dbx500-cpufreq.o | 52 | obj-$(CONFIG_UX500_SOC_DB8500) += dbx500-cpufreq.o |
53 | obj-$(CONFIG_ARM_S3C2416_CPUFREQ) += s3c2416-cpufreq.o | ||
54 | obj-$(CONFIG_ARM_S3C64XX_CPUFREQ) += s3c64xx-cpufreq.o | ||
55 | obj-$(CONFIG_ARM_S5PV210_CPUFREQ) += s5pv210-cpufreq.o | ||
56 | obj-$(CONFIG_ARM_EXYNOS_CPUFREQ) += exynos-cpufreq.o | 53 | obj-$(CONFIG_ARM_EXYNOS_CPUFREQ) += exynos-cpufreq.o |
57 | obj-$(CONFIG_ARM_EXYNOS4210_CPUFREQ) += exynos4210-cpufreq.o | 54 | obj-$(CONFIG_ARM_EXYNOS4210_CPUFREQ) += exynos4210-cpufreq.o |
58 | obj-$(CONFIG_ARM_EXYNOS4X12_CPUFREQ) += exynos4x12-cpufreq.o | 55 | obj-$(CONFIG_ARM_EXYNOS4X12_CPUFREQ) += exynos4x12-cpufreq.o |
59 | obj-$(CONFIG_ARM_EXYNOS5250_CPUFREQ) += exynos5250-cpufreq.o | 56 | obj-$(CONFIG_ARM_EXYNOS5250_CPUFREQ) += exynos5250-cpufreq.o |
57 | obj-$(CONFIG_ARM_HIGHBANK_CPUFREQ) += highbank-cpufreq.o | ||
58 | obj-$(CONFIG_ARM_IMX6Q_CPUFREQ) += imx6q-cpufreq.o | ||
60 | obj-$(CONFIG_ARM_KIRKWOOD_CPUFREQ) += kirkwood-cpufreq.o | 59 | obj-$(CONFIG_ARM_KIRKWOOD_CPUFREQ) += kirkwood-cpufreq.o |
61 | obj-$(CONFIG_ARM_OMAP2PLUS_CPUFREQ) += omap-cpufreq.o | 60 | obj-$(CONFIG_ARM_OMAP2PLUS_CPUFREQ) += omap-cpufreq.o |
61 | obj-$(CONFIG_ARM_S3C2416_CPUFREQ) += s3c2416-cpufreq.o | ||
62 | obj-$(CONFIG_ARM_S3C64XX_CPUFREQ) += s3c64xx-cpufreq.o | ||
63 | obj-$(CONFIG_ARM_S5PV210_CPUFREQ) += s5pv210-cpufreq.o | ||
62 | obj-$(CONFIG_ARM_SPEAR_CPUFREQ) += spear-cpufreq.o | 64 | obj-$(CONFIG_ARM_SPEAR_CPUFREQ) += spear-cpufreq.o |
63 | obj-$(CONFIG_ARM_HIGHBANK_CPUFREQ) += highbank-cpufreq.o | ||
64 | obj-$(CONFIG_ARM_IMX6Q_CPUFREQ) += imx6q-cpufreq.o | ||
65 | 65 | ||
66 | ################################################################################## | 66 | ################################################################################## |
67 | # PowerPC platform drivers | 67 | # PowerPC platform drivers |