linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Viresh Kumar <viresh.kumar@linaro.org>
To: rjw@sisk.pl
Cc: arvind.chauhan@arm.com, robin.randhawa@arm.com,
	Steve.Bannister@arm.com, Liviu.Dudau@arm.com,
	charles.garcia-tobin@arm.com, cpufreq@vger.kernel.org,
	linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org,
	linaro-kernel@lists.linaro.org, arnd.bergmann@linaro.org,
	Viresh Kumar <viresh.kumar@linaro.org>
Subject: [PATCH 0/9] CPUFreq: Move drivers to drivers/cpufreq - Part 2
Date: Mon, 25 Mar 2013 22:24:36 +0530	[thread overview]
Message-ID: <cover.1364229828.git.viresh.kumar@linaro.org> (raw)

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


             reply	other threads:[~2013-03-25 16:54 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-25 16:54 Viresh Kumar [this message]
2013-03-25 16:54 ` [PATCH 1/9] AVR32: cpufreq: move cpufreq driver to drivers/cpufreq Viresh Kumar
2013-03-31  3:58   ` Viresh Kumar
2013-03-31  4:05     ` Viresh Kumar
     [not found]       ` <CAKohponGrtXWSaGeRxKpVMNZGDNCqK3-hc0tZGHXM78Jh5od9w@mail.gmail.com>
     [not found]         ` <20130403094245.GA4953@samfundet.no>
2013-04-03 10:36           ` Viresh Kumar
2013-03-25 16:54 ` [PATCH 2/9] blackfin: " Viresh Kumar
     [not found]   ` <df07f927c36e109e49363b9b87965a184ea941ca.1364229828.git.viresh.kumar-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2013-03-26 10:26     ` Steven Miao
2013-03-25 16:54 ` [PATCH 3/9] cris: " Viresh Kumar
2013-03-31  4:00   ` Viresh Kumar
2013-04-03 12:21   ` Jesper Nilsson
2013-03-25 16:54 ` [PATCH 4/9] ia64: " Viresh Kumar
2013-03-30  9:51   ` Viresh Kumar
2013-04-01  5:01     ` Viresh Kumar
2013-04-01 21:22       ` Tony Luck
2013-04-02  0:49         ` Viresh Kumar
2013-04-03 17:35           ` Tony Luck
2013-03-25 16:54 ` [PATCH 5/9] mips: " Viresh Kumar
2013-03-31  4:01   ` Viresh Kumar
2013-03-25 16:54 ` [PATCH 6/9] sh: " Viresh Kumar
2013-03-26  9:29   ` Paul Mundt
2013-03-25 16:54 ` [PATCH 7/9] unicore2: " Viresh Kumar
2013-03-31  4:01   ` Viresh Kumar
2013-03-31 14:18     ` Xuetao Guan
2013-03-25 16:54 ` [PATCH 8/9] spark: " Viresh Kumar
2013-03-25 17:07   ` David Miller
2013-03-26  2:00     ` Viresh Kumar
2013-03-26  4:25       ` Viresh Kumar
2013-03-31  7:30         ` Viresh Kumar
2013-03-31 16:40           ` David Miller
2013-04-01  4:41             ` Viresh Kumar
     [not found]               ` <CAKohpomNTb6G9XOyd+4AidQw+EcS63neVuL9FETdQDQY6emxPA@mail.gmail.com>
     [not found]                 ` <20130403.123843.317510603826206997.davem@davemloft.net>
2013-04-03 17:09                   ` Viresh Kumar
2013-03-25 16:54 ` [PATCH 9/9] powerpc: " Viresh Kumar
2013-03-31  4:03   ` Viresh Kumar
     [not found]     ` <CAKohpomRMkKouiy+iJUiheTcPGCDVLbxppL5f4oc-WMu2E5T8g@mail.gmail.com>
     [not found]       ` <1364985034.16520.12.camel@pasglop>
2013-04-04  6:25         ` Viresh Kumar
2013-04-04  6:30           ` Amit Kucheria
2013-04-11  6:59           ` Olof Johansson
2013-04-11  7:02             ` Viresh Kumar
2013-04-11 20:33               ` Rafael J. Wysocki

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1364229828.git.viresh.kumar@linaro.org \
    --to=viresh.kumar@linaro.org \
    --cc=Liviu.Dudau@arm.com \
    --cc=Steve.Bannister@arm.com \
    --cc=arnd.bergmann@linaro.org \
    --cc=arvind.chauhan@arm.com \
    --cc=charles.garcia-tobin@arm.com \
    --cc=cpufreq@vger.kernel.org \
    --cc=linaro-kernel@lists.linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=rjw@sisk.pl \
    --cc=robin.randhawa@arm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).