[PATCH 0/9] CPUFreq: Move drivers to drivers/cpufreq - Part 2

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

This is the second patchset toward migrating all cpufreq drivers to
drivers/cpufreq (Earlier one was for ARM drivers).

These are all applied here:

http://git.linaro.org/gitweb?p=people/vireshk/linux.git;a=shortlog;h=refs/heads/cpufreq-move-drivers

They aren't tested, not even compilation.

Viresh Kumar (9):
  AVR32: cpufreq:  move cpufreq driver to drivers/cpufreq
  blackfin: cpufreq:  move cpufreq driver to drivers/cpufreq
  cris: cpufreq:  move cpufreq driver to drivers/cpufreq
  ia64: cpufreq:  move cpufreq driver to drivers/cpufreq
  mips: cpufreq:  move cpufreq driver to drivers/cpufreq
  sh: cpufreq:  move cpufreq driver to drivers/cpufreq
  unicore2: cpufreq:  move cpufreq driver to drivers/cpufreq
  spark: cpufreq:  move cpufreq driver to drivers/cpufreq
  powerpc: cpufreq:  move cpufreq driver to drivers/cpufreq

 arch/avr32/Kconfig                                 | 13 ----
 arch/avr32/configs/atngw100_defconfig              |  2 +-
 arch/avr32/configs/atngw100_evklcd100_defconfig    |  2 +-
 arch/avr32/configs/atngw100_evklcd101_defconfig    |  2 +-
 arch/avr32/configs/atngw100_mrmt_defconfig         |  2 +-
 arch/avr32/configs/atngw100mkii_defconfig          |  2 +-
 .../avr32/configs/atngw100mkii_evklcd100_defconfig |  2 +-
 .../avr32/configs/atngw100mkii_evklcd101_defconfig |  2 +-
 arch/avr32/configs/atstk1002_defconfig             |  2 +-
 arch/avr32/configs/atstk1003_defconfig             |  2 +-
 arch/avr32/configs/atstk1004_defconfig             |  2 +-
 arch/avr32/configs/atstk1006_defconfig             |  2 +-
 arch/avr32/configs/favr-32_defconfig               |  2 +-
 arch/avr32/configs/hammerhead_defconfig            |  2 +-
 arch/avr32/configs/mimc200_defconfig               |  2 +-
 arch/avr32/mach-at32ap/Makefile                    |  1 -
 arch/blackfin/mach-common/Makefile                 |  1 -
 arch/cris/arch-v32/mach-a3/Makefile                |  1 -
 arch/cris/arch-v32/mach-fs/Makefile                |  1 -
 arch/ia64/Kconfig                                  |  5 +-
 arch/ia64/kernel/Makefile                          |  1 -
 arch/ia64/kernel/cpufreq/Kconfig                   | 29 -------
 arch/ia64/kernel/cpufreq/Makefile                  |  2 -
 arch/mips/Kconfig                                  |  9 ++-
 arch/mips/kernel/Makefile                          |  2 -
 arch/mips/kernel/cpufreq/Kconfig                   | 41 ----------
 arch/mips/kernel/cpufreq/Makefile                  |  5 --
 arch/powerpc/platforms/Kconfig                     | 31 --------
 arch/powerpc/platforms/pasemi/Makefile             |  1 -
 arch/powerpc/platforms/powermac/Makefile           |  2 -
 arch/sh/Kconfig                                    | 18 -----
 arch/sh/kernel/Makefile                            |  1 -
 arch/sparc/Kconfig                                 | 23 ------
 arch/sparc/kernel/Makefile                         |  3 -
 arch/unicore32/kernel/Makefile                     |  1 -
 drivers/cpufreq/Kconfig                            | 89 ++++++++++++++++++++++
 drivers/cpufreq/Kconfig.powerpc                    | 26 +++++++
 drivers/cpufreq/Makefile                           | 16 ++++
 .../cpufreq.c => drivers/cpufreq/at32ap-cpufreq.c  |  0
 .../cpufreq/blackfin-cpufreq.c                     |  0
 .../cpufreq/cris-artpec3-cpufreq.c                 |  0
 .../cpufreq/cris-etraxfs-cpufreq.c                 |  0
 .../cpufreq/ia64-acpi-cpufreq.c                    |  1 -
 .../kernel => drivers}/cpufreq/loongson2_cpufreq.c |  0
 .../cpufreq.c => drivers/cpufreq/pasemi-cpufreq.c  |  0
 .../cpufreq/pmac32-cpufreq.c                       |  0
 .../cpufreq/pmac64-cpufreq.c                       |  0
 .../cpufreq.c => drivers/cpufreq/sh-cpufreq.c      |  2 -
 .../cpufreq/spark-us2e-cpufreq.c                   |  0
 .../cpufreq/spark-us3-cpufreq.c                    |  0
 .../cpufreq/unicore2-cpufreq.c                     |  2 +-
 51 files changed, 156 insertions(+), 199 deletions(-)
 delete mode 100644 arch/ia64/kernel/cpufreq/Kconfig
 delete mode 100644 arch/ia64/kernel/cpufreq/Makefile
 delete mode 100644 arch/mips/kernel/cpufreq/Kconfig
 delete mode 100644 arch/mips/kernel/cpufreq/Makefile
 rename arch/avr32/mach-at32ap/cpufreq.c => drivers/cpufreq/at32ap-cpufreq.c (100%)
 rename arch/blackfin/mach-common/cpufreq.c => drivers/cpufreq/blackfin-cpufreq.c (100%)
 rename arch/cris/arch-v32/mach-a3/cpufreq.c => drivers/cpufreq/cris-artpec3-cpufreq.c (100%)
 rename arch/cris/arch-v32/mach-fs/cpufreq.c => drivers/cpufreq/cris-etraxfs-cpufreq.c (100%)
 rename arch/ia64/kernel/cpufreq/acpi-cpufreq.c => drivers/cpufreq/ia64-acpi-cpufreq.c (99%)
 rename {arch/mips/kernel => drivers}/cpufreq/loongson2_cpufreq.c (100%)
 rename arch/powerpc/platforms/pasemi/cpufreq.c => drivers/cpufreq/pasemi-cpufreq.c (100%)
 rename arch/powerpc/platforms/powermac/cpufreq_32.c => drivers/cpufreq/pmac32-cpufreq.c (100%)
 rename arch/powerpc/platforms/powermac/cpufreq_64.c => drivers/cpufreq/pmac64-cpufreq.c (100%)
 rename arch/sh/kernel/cpufreq.c => drivers/cpufreq/sh-cpufreq.c (99%)
 rename arch/sparc/kernel/us2e_cpufreq.c => drivers/cpufreq/spark-us2e-cpufreq.c (100%)
 rename arch/sparc/kernel/us3_cpufreq.c => drivers/cpufreq/spark-us3-cpufreq.c (100%)
 rename arch/unicore32/kernel/cpu-ucv2.c => drivers/cpufreq/unicore2-cpufreq.c (96%)

-- 
1.7.12.rc2.18.g61b472e

--
To unsubscribe from this list: send the line "unsubscribe cpufreq" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Linux Kernel Devel]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite Forum]     [Linux SCSI]

  Powered by Linux