diff options
| author | Viresh Kumar <viresh.kumar@linaro.org> | 2013-04-04 08:54:12 -0400 |
|---|---|---|
| committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-04-08 07:02:31 -0400 |
| commit | adde904b445eedf7ad6a8451a416c8080472c4c7 (patch) | |
| tree | d178c7c9bfa8acc7060d6f7790da3644d1d90662 | |
| parent | 8a7b1227e303d7e927214ee0f260041aef44bb58 (diff) | |
cpufreq: pxa3xx: move cpufreq driver to drivers/cpufreq
This patch moves cpufreq driver of ARM based pxa3xx platform to drivers/cpufreq.
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Acked-by: Eric Miao <eric.y.miao@gmail.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
| -rw-r--r-- | arch/arm/mach-pxa/Makefile | 1 | ||||
| -rw-r--r-- | arch/arm/mach-pxa/include/mach/generic.h | 1 | ||||
| -rw-r--r-- | drivers/cpufreq/Makefile | 1 | ||||
| -rw-r--r-- | drivers/cpufreq/pxa3xx-cpufreq.c (renamed from arch/arm/mach-pxa/cpufreq-pxa3xx.c) | 5 |
4 files changed, 3 insertions, 5 deletions
diff --git a/arch/arm/mach-pxa/Makefile b/arch/arm/mach-pxa/Makefile index 12c500558387..929e7008e2e4 100644 --- a/arch/arm/mach-pxa/Makefile +++ b/arch/arm/mach-pxa/Makefile | |||
| @@ -10,7 +10,6 @@ obj-$(CONFIG_PM) += pm.o sleep.o standby.o | |||
| 10 | ifeq ($(CONFIG_CPU_FREQ),y) | 10 | ifeq ($(CONFIG_CPU_FREQ),y) |
| 11 | obj-$(CONFIG_PXA25x) += cpufreq-pxa2xx.o | 11 | obj-$(CONFIG_PXA25x) += cpufreq-pxa2xx.o |
| 12 | obj-$(CONFIG_PXA27x) += cpufreq-pxa2xx.o | 12 | obj-$(CONFIG_PXA27x) += cpufreq-pxa2xx.o |
| 13 | obj-$(CONFIG_PXA3xx) += cpufreq-pxa3xx.o | ||
| 14 | endif | 13 | endif |
| 15 | 14 | ||
| 16 | # Generic drivers that other drivers may depend upon | 15 | # Generic drivers that other drivers may depend upon |
diff --git a/arch/arm/mach-pxa/include/mach/generic.h b/arch/arm/mach-pxa/include/mach/generic.h new file mode 100644 index 000000000000..665542e0c9e2 --- /dev/null +++ b/arch/arm/mach-pxa/include/mach/generic.h | |||
| @@ -0,0 +1 @@ | |||
| #include "../../generic.h" | |||
diff --git a/drivers/cpufreq/Makefile b/drivers/cpufreq/Makefile index c0e8921f91fc..3458bf2ed1bb 100644 --- a/drivers/cpufreq/Makefile +++ b/drivers/cpufreq/Makefile | |||
| @@ -59,6 +59,7 @@ obj-$(CONFIG_ARM_HIGHBANK_CPUFREQ) += highbank-cpufreq.o | |||
| 59 | obj-$(CONFIG_ARM_IMX6Q_CPUFREQ) += imx6q-cpufreq.o | 59 | obj-$(CONFIG_ARM_IMX6Q_CPUFREQ) += imx6q-cpufreq.o |
| 60 | obj-$(CONFIG_ARM_KIRKWOOD_CPUFREQ) += kirkwood-cpufreq.o | 60 | obj-$(CONFIG_ARM_KIRKWOOD_CPUFREQ) += kirkwood-cpufreq.o |
| 61 | obj-$(CONFIG_ARM_OMAP2PLUS_CPUFREQ) += omap-cpufreq.o | 61 | obj-$(CONFIG_ARM_OMAP2PLUS_CPUFREQ) += omap-cpufreq.o |
| 62 | obj-$(CONFIG_PXA3xx) += pxa3xx-cpufreq.o | ||
| 62 | obj-$(CONFIG_ARM_S3C2416_CPUFREQ) += s3c2416-cpufreq.o | 63 | obj-$(CONFIG_ARM_S3C2416_CPUFREQ) += s3c2416-cpufreq.o |
| 63 | obj-$(CONFIG_ARM_S3C64XX_CPUFREQ) += s3c64xx-cpufreq.o | 64 | obj-$(CONFIG_ARM_S3C64XX_CPUFREQ) += s3c64xx-cpufreq.o |
| 64 | obj-$(CONFIG_ARM_S5PV210_CPUFREQ) += s5pv210-cpufreq.o | 65 | obj-$(CONFIG_ARM_S5PV210_CPUFREQ) += s5pv210-cpufreq.o |
diff --git a/arch/arm/mach-pxa/cpufreq-pxa3xx.c b/drivers/cpufreq/pxa3xx-cpufreq.c index 8c45b2b926a7..15d60f857ad5 100644 --- a/arch/arm/mach-pxa/cpufreq-pxa3xx.c +++ b/drivers/cpufreq/pxa3xx-cpufreq.c | |||
| @@ -1,6 +1,4 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * linux/arch/arm/mach-pxa/cpufreq-pxa3xx.c | ||
| 3 | * | ||
| 4 | * Copyright (C) 2008 Marvell International Ltd. | 2 | * Copyright (C) 2008 Marvell International Ltd. |
| 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 |
| @@ -17,10 +15,9 @@ | |||
| 17 | #include <linux/slab.h> | 15 | #include <linux/slab.h> |
| 18 | #include <linux/io.h> | 16 | #include <linux/io.h> |
| 19 | 17 | ||
| 18 | #include <mach/generic.h> | ||
| 20 | #include <mach/pxa3xx-regs.h> | 19 | #include <mach/pxa3xx-regs.h> |
| 21 | 20 | ||
| 22 | #include "generic.h" | ||
| 23 | |||
| 24 | #define HSS_104M (0) | 21 | #define HSS_104M (0) |
| 25 | #define HSS_156M (1) | 22 | #define HSS_156M (1) |
| 26 | #define HSS_208M (2) | 23 | #define HSS_208M (2) |
