All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kukjin Kim <kgene.kim@samsung.com>
To: Pankaj Dubey <pankaj.dubey@samsung.com>
Cc: linux-arm-kernel@lists.infradead.org,
	linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org,
	kgene.kim@samsung.com, linux@arm.linux.org.uk,
	t.figa@samsung.com, vikas.sajjan@samsung.com, joshi@samsung.com,
	naushad@samsung.com, chow.kim@samsung.com
Subject: Re: [PATCH v6 0/6] Cleanup patches for mach-exynos
Date: Tue, 08 Jul 2014 07:48:10 +0900	[thread overview]
Message-ID: <53BB23AA.6060105@samsung.com> (raw)
In-Reply-To: <1404705056-11965-1-git-send-email-pankaj.dubey@samsung.com>

On 07/07/14 12:50, Pankaj Dubey wrote:
> This series is doing code cleanup under arch/arm/mach-exynos.
> These patches have been separated from main exynos pmu v4 patch
> posted here [1].
>
> [1]: https://lkml.org/lkml/2014/5/10/29
>
> Changes Since v5:
>   - Rebased on latest for-next of Kukjin Kim's tree.
>   - Using of_machine_is_compatible instead of soc_is_exynos in patch 2.
>
> Changes Since v4:
>   - Rebased on latest for-next of Kukjin Kim's tree.
>   - Removing file path comment from mach-exynos/headsmp.S also.
>   - Removed signed-off-by of Young-Gun Jang<yg1004.jang@samsung.com>,
>     as this id is no more valid. Taking ownership of all his patches.
>   - Separated these patches from main exynos pmu v4 patch series as
>     suggested by Tomasz Figa.
>
> Changes Since v3:
>   - Addressed build fail issue in exynos.c as reported by Sachin Kamat.
>   - Rebased on top of Sysram patches by Sachin Kamat.
>
> Changes Since v2:
>   - Rebased on top of Daniel Lezcano's Exynos cpuidle refactor patches.
>   - Removed exynos_cpuidle_init and exynos_cpufreq_init code as suggested
>     by Tomasz Figa.
>
> Changes Since v1:
>   - Rebased on latest for-next of Kukjin Kim's tree.
>   - Added patch: "Make exynos machine_ops as static".
> 	For making more cleanup in "mach-exynos/common.h"
> 	as suggested by Tomasz Figa.
>   - Addressed comments of Tomasz Figa for cleaning "mach-exynos/common.h".
>   - Updated patch: Remove file path from comment section
> 	As suggested by Michel Simek, instead of updating file path
> 	lets remove them from each file under "mach-exynos".
> 	Even though Kukjin pointed out that there is similar patch pending from
> 	Sachin/Tushar but since I could not find I have included this here. If
> 	I have missed something please point to any existing such patch.
>   - Added patch: Remove "linux/bug.h" from pmu.c.
>   - Added patch: Move "mach/map.h" inclusion from regs-pmu.h to platsmp.c
>
>
> Pankaj Dubey (6):
>    ARM: EXYNOS: Make exynos machine_ops as static
>    ARM: EXYNOS: Move cpufreq and cpuidle device registration to
>      init_machine
>    ARM: EXYNOS: Move SYSREG definition into sys-reg specific file
>    ARM: EXYNOS: Remove file path from comment section
>    ARM: EXYNOS: Remove regs-pmu.h header dependency from pm_domain
>    ARM: EXYNOS: Remove "linux/bug.h" from pmu.c
>
>   arch/arm/mach-exynos/common.h              |    8 --------
>   arch/arm/mach-exynos/exynos.c              |   27 ++++++++-------------------
>   arch/arm/mach-exynos/headsmp.S             |    1 -
>   arch/arm/mach-exynos/hotplug.c             |    3 +--
>   arch/arm/mach-exynos/include/mach/map.h    |    3 +--
>   arch/arm/mach-exynos/include/mach/memory.h |    3 +--
>   arch/arm/mach-exynos/platsmp.c             |    3 +--
>   arch/arm/mach-exynos/pm.c                  |    1 +
>   arch/arm/mach-exynos/pm_domains.c          |    8 ++++----
>   arch/arm/mach-exynos/pmu.c                 |    1 -
>   arch/arm/mach-exynos/regs-pmu.h            |    4 ----
>   arch/arm/mach-exynos/regs-sys.h            |   22 ++++++++++++++++++++++
>   12 files changed, 39 insertions(+), 45 deletions(-)
>   create mode 100644 arch/arm/mach-exynos/regs-sys.h
>
OK, looks good to me, I think we don't need 4/6 patch though :-)

I've applied this whole series, thanks.

- Kukjin

WARNING: multiple messages have this Message-ID (diff)
From: kgene.kim@samsung.com (Kukjin Kim)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v6 0/6] Cleanup patches for mach-exynos
Date: Tue, 08 Jul 2014 07:48:10 +0900	[thread overview]
Message-ID: <53BB23AA.6060105@samsung.com> (raw)
In-Reply-To: <1404705056-11965-1-git-send-email-pankaj.dubey@samsung.com>

On 07/07/14 12:50, Pankaj Dubey wrote:
> This series is doing code cleanup under arch/arm/mach-exynos.
> These patches have been separated from main exynos pmu v4 patch
> posted here [1].
>
> [1]: https://lkml.org/lkml/2014/5/10/29
>
> Changes Since v5:
>   - Rebased on latest for-next of Kukjin Kim's tree.
>   - Using of_machine_is_compatible instead of soc_is_exynos in patch 2.
>
> Changes Since v4:
>   - Rebased on latest for-next of Kukjin Kim's tree.
>   - Removing file path comment from mach-exynos/headsmp.S also.
>   - Removed signed-off-by of Young-Gun Jang<yg1004.jang@samsung.com>,
>     as this id is no more valid. Taking ownership of all his patches.
>   - Separated these patches from main exynos pmu v4 patch series as
>     suggested by Tomasz Figa.
>
> Changes Since v3:
>   - Addressed build fail issue in exynos.c as reported by Sachin Kamat.
>   - Rebased on top of Sysram patches by Sachin Kamat.
>
> Changes Since v2:
>   - Rebased on top of Daniel Lezcano's Exynos cpuidle refactor patches.
>   - Removed exynos_cpuidle_init and exynos_cpufreq_init code as suggested
>     by Tomasz Figa.
>
> Changes Since v1:
>   - Rebased on latest for-next of Kukjin Kim's tree.
>   - Added patch: "Make exynos machine_ops as static".
> 	For making more cleanup in "mach-exynos/common.h"
> 	as suggested by Tomasz Figa.
>   - Addressed comments of Tomasz Figa for cleaning "mach-exynos/common.h".
>   - Updated patch: Remove file path from comment section
> 	As suggested by Michel Simek, instead of updating file path
> 	lets remove them from each file under "mach-exynos".
> 	Even though Kukjin pointed out that there is similar patch pending from
> 	Sachin/Tushar but since I could not find I have included this here. If
> 	I have missed something please point to any existing such patch.
>   - Added patch: Remove "linux/bug.h" from pmu.c.
>   - Added patch: Move "mach/map.h" inclusion from regs-pmu.h to platsmp.c
>
>
> Pankaj Dubey (6):
>    ARM: EXYNOS: Make exynos machine_ops as static
>    ARM: EXYNOS: Move cpufreq and cpuidle device registration to
>      init_machine
>    ARM: EXYNOS: Move SYSREG definition into sys-reg specific file
>    ARM: EXYNOS: Remove file path from comment section
>    ARM: EXYNOS: Remove regs-pmu.h header dependency from pm_domain
>    ARM: EXYNOS: Remove "linux/bug.h" from pmu.c
>
>   arch/arm/mach-exynos/common.h              |    8 --------
>   arch/arm/mach-exynos/exynos.c              |   27 ++++++++-------------------
>   arch/arm/mach-exynos/headsmp.S             |    1 -
>   arch/arm/mach-exynos/hotplug.c             |    3 +--
>   arch/arm/mach-exynos/include/mach/map.h    |    3 +--
>   arch/arm/mach-exynos/include/mach/memory.h |    3 +--
>   arch/arm/mach-exynos/platsmp.c             |    3 +--
>   arch/arm/mach-exynos/pm.c                  |    1 +
>   arch/arm/mach-exynos/pm_domains.c          |    8 ++++----
>   arch/arm/mach-exynos/pmu.c                 |    1 -
>   arch/arm/mach-exynos/regs-pmu.h            |    4 ----
>   arch/arm/mach-exynos/regs-sys.h            |   22 ++++++++++++++++++++++
>   12 files changed, 39 insertions(+), 45 deletions(-)
>   create mode 100644 arch/arm/mach-exynos/regs-sys.h
>
OK, looks good to me, I think we don't need 4/6 patch though :-)

I've applied this whole series, thanks.

- Kukjin

  parent reply	other threads:[~2014-07-07 22:48 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-07  3:50 [PATCH v6 0/6] Cleanup patches for mach-exynos Pankaj Dubey
2014-07-07  3:50 ` Pankaj Dubey
2014-07-07  3:50 ` [PATCH v6 1/6] ARM: EXYNOS: Make exynos machine_ops as static Pankaj Dubey
2014-07-07  3:50   ` Pankaj Dubey
2014-07-07  3:50 ` [PATCH v6 2/6] ARM: EXYNOS: Move cpufreq and cpuidle device registration to init_machine Pankaj Dubey
2014-07-07  3:50   ` Pankaj Dubey
2014-07-07 22:56   ` Kukjin Kim
2014-07-07 22:56     ` Kukjin Kim
2014-07-08  7:35     ` Pankaj Dubey
2014-07-08  7:35       ` Pankaj Dubey
2014-07-10 13:33       ` Kukjin Kim
2014-07-10 13:33         ` Kukjin Kim
2014-07-14  4:10         ` Pankaj Dubey
2014-07-14  4:10           ` Pankaj Dubey
2014-07-07  3:50 ` [PATCH v6 3/6] ARM: EXYNOS: Move SYSREG definition into sys-reg specific file Pankaj Dubey
2014-07-07  3:50   ` Pankaj Dubey
2014-07-07  3:50 ` [PATCH v6 4/6] ARM: EXYNOS: Remove file path from comment section Pankaj Dubey
2014-07-07  3:50   ` Pankaj Dubey
2014-07-07  3:50 ` [PATCH v6 5/6] ARM: EXYNOS: Remove regs-pmu.h header dependency from pm_domain Pankaj Dubey
2014-07-07  3:50   ` Pankaj Dubey
2014-07-07  3:50 ` [PATCH v6 6/6] ARM: EXYNOS: Remove "linux/bug.h" from pmu.c Pankaj Dubey
2014-07-07  3:50   ` Pankaj Dubey
2014-07-07 22:48 ` Kukjin Kim [this message]
2014-07-07 22:48   ` [PATCH v6 0/6] Cleanup patches for mach-exynos Kukjin Kim

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=53BB23AA.6060105@samsung.com \
    --to=kgene.kim@samsung.com \
    --cc=chow.kim@samsung.com \
    --cc=joshi@samsung.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=naushad@samsung.com \
    --cc=pankaj.dubey@samsung.com \
    --cc=t.figa@samsung.com \
    --cc=vikas.sajjan@samsung.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.