aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/arm/Kconfig7
-rw-r--r--arch/arm/mach-pxa/Makefile5
-rw-r--r--drivers/cpufreq/Makefile2
-rw-r--r--drivers/cpufreq/pxa2xx-cpufreq.c (renamed from arch/arm/mach-pxa/cpufreq-pxa2xx.c)2
4 files changed, 2 insertions, 14 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 13b739469c51..76eb836793a1 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -2177,13 +2177,6 @@ config CPU_FREQ_INTEGRATOR
2177 2177
2178 If in doubt, say Y. 2178 If in doubt, say Y.
2179 2179
2180config CPU_FREQ_PXA
2181 bool
2182 depends on CPU_FREQ && ARCH_PXA && PXA25x
2183 default y
2184 select CPU_FREQ_DEFAULT_GOV_USERSPACE
2185 select CPU_FREQ_TABLE
2186
2187config CPU_FREQ_S3C 2180config CPU_FREQ_S3C
2188 bool 2181 bool
2189 help 2182 help
diff --git a/arch/arm/mach-pxa/Makefile b/arch/arm/mach-pxa/Makefile
index 929e7008e2e4..648867a8caa8 100644
--- a/arch/arm/mach-pxa/Makefile
+++ b/arch/arm/mach-pxa/Makefile
@@ -7,11 +7,6 @@ obj-y += clock.o devices.o generic.o irq.o \
7 time.o reset.o 7 time.o reset.o
8obj-$(CONFIG_PM) += pm.o sleep.o standby.o 8obj-$(CONFIG_PM) += pm.o sleep.o standby.o
9 9
10ifeq ($(CONFIG_CPU_FREQ),y)
11obj-$(CONFIG_PXA25x) += cpufreq-pxa2xx.o
12obj-$(CONFIG_PXA27x) += cpufreq-pxa2xx.o
13endif
14
15# Generic drivers that other drivers may depend upon 10# Generic drivers that other drivers may depend upon
16 11
17# SoC-specific code 12# SoC-specific code
diff --git a/drivers/cpufreq/Makefile b/drivers/cpufreq/Makefile
index 3458bf2ed1bb..aa766fb85513 100644
--- a/drivers/cpufreq/Makefile
+++ b/drivers/cpufreq/Makefile
@@ -59,6 +59,8 @@ obj-$(CONFIG_ARM_HIGHBANK_CPUFREQ) += highbank-cpufreq.o
59obj-$(CONFIG_ARM_IMX6Q_CPUFREQ) += imx6q-cpufreq.o 59obj-$(CONFIG_ARM_IMX6Q_CPUFREQ) += imx6q-cpufreq.o
60obj-$(CONFIG_ARM_KIRKWOOD_CPUFREQ) += kirkwood-cpufreq.o 60obj-$(CONFIG_ARM_KIRKWOOD_CPUFREQ) += kirkwood-cpufreq.o
61obj-$(CONFIG_ARM_OMAP2PLUS_CPUFREQ) += omap-cpufreq.o 61obj-$(CONFIG_ARM_OMAP2PLUS_CPUFREQ) += omap-cpufreq.o
62obj-$(CONFIG_PXA25x) += pxa2xx-cpufreq.o
63obj-$(CONFIG_PXA27x) += pxa2xx-cpufreq.o
62obj-$(CONFIG_PXA3xx) += pxa3xx-cpufreq.o 64obj-$(CONFIG_PXA3xx) += pxa3xx-cpufreq.o
63obj-$(CONFIG_ARM_S3C2416_CPUFREQ) += s3c2416-cpufreq.o 65obj-$(CONFIG_ARM_S3C2416_CPUFREQ) += s3c2416-cpufreq.o
64obj-$(CONFIG_ARM_S3C64XX_CPUFREQ) += s3c64xx-cpufreq.o 66obj-$(CONFIG_ARM_S3C64XX_CPUFREQ) += s3c64xx-cpufreq.o
diff --git a/arch/arm/mach-pxa/cpufreq-pxa2xx.c b/drivers/cpufreq/pxa2xx-cpufreq.c
index f1ca4daa1ad6..fe4c55b38ec3 100644
--- a/arch/arm/mach-pxa/cpufreq-pxa2xx.c
+++ b/drivers/cpufreq/pxa2xx-cpufreq.c
@@ -1,6 +1,4 @@
1/* 1/*
2 * linux/arch/arm/mach-pxa/cpufreq-pxa2xx.c
3 *
4 * Copyright (C) 2002,2003 Intrinsyc Software 2 * Copyright (C) 2002,2003 Intrinsyc Software
5 * 3 *
6 * This program is free software; you can redistribute it and/or modify 4 * This program is free software; you can redistribute it and/or modify