All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kukjin Kim <kgene@kernel.org>
To: 'Krzysztof Kozlowski' <k.kozlowski@samsung.com>,
	'Kukjin Kim' <kgene@kernel.org>
Cc: linux-arm-kernel@lists.infradead.org,
	linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: RE: [GIT PULL] ARM: EXYNOS: mach: Improvements for 4.3
Date: Tue, 21 Jul 2015 14:02:35 +0900	[thread overview]
Message-ID: <06bb01d0c372$756f2250$604d66f0$@kernel.org> (raw)
In-Reply-To: <1437014519-19571-2-git-send-email-k.kozlowski@samsung.com>

Krzysztof Kozlowski wrote:
> 
> Dear Kukjin,
> 
> Exynos mach-code related improvements. Description along with a tag.
> You can find them also on the lists with my reviewed-by.
> 
> Best regards,
> Krzysztof
> 
> 
> The following changes since commit 1c4c7159ed2468f3ac4ce5a7f08d79663d381a93:
> 
>   Merge tag 'ext4_for_linus_stable' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4 (2015-
> 07-05 16:24:54 -0700)
> 
> are available in the git repository at:
> 
> 
>   https://github.com/krzk/linux.git tags/samsung-mach-4.3
> 
> for you to fetch changes up to 70f83b6716ea0e5944071c12ff1716f93a9c2d8d:
> 
>   cpufreq: exynos: remove Exynos5250 specific cpufreq driver support (2015-07-16 10:39:56 +0900)
> 
> ----------------------------------------------------------------
> Improvements for Exynos based boards:
> 1. Switch to generic cpufreq-dt driver for Exynos5250. The old driver
>    is removed.
> 2. Fix memory leak in cpufreq error path.
> 3. Cleanups: remove duplicated define with bootloader's sleep magic
>    constant, staticize local function, drop 'owner' from
>    platform driver, fix cast of iomem to ERR_PTR.
> 
> ----------------------------------------------------------------
> Bartlomiej Zolnierkiewicz (1):
>       cpufreq: exynos: remove Exynos5250 specific cpufreq driver support
> 
> Krzysztof Kozlowski (4):
>       ARM: EXYNOS: pmu: Make local function static
>       ARM: EXYNOS: Remove duplicated define of SLEEP_MAGIC
>       ARM: EXYNOS: pmu: Drop owner assignment
>       ARM: EXYNOS: Use IOMEM_ERR_PTR when function returns iomem
> 
> Shailendra Verma (1):
>       cpufreq: exynos: Fix for memory leak in case SOC name does not match
> 
> Thomas Abraham (3):
>       clk: samsung: exynos5250: add cpu clock configuration data and instantiate cpu clock
>       ARM: dts: Exynos5250: add CPU OPP and regulator supply property
>       ARM: Exynos: switch to using generic cpufreq driver for Exynos5250
> 
>  arch/arm/boot/dts/exynos5250-arndale.dts  |   4 +
>  arch/arm/boot/dts/exynos5250-smdk5250.dts |   4 +
>  arch/arm/boot/dts/exynos5250-snow.dts     |   4 +
>  arch/arm/boot/dts/exynos5250-spring.dts   |   4 +
>  arch/arm/boot/dts/exynos5250.dtsi         |  22 ++++
>  arch/arm/mach-exynos/common.h             |   6 +
>  arch/arm/mach-exynos/exynos.c             |   1 +
>  arch/arm/mach-exynos/firmware.c           |   2 -
>  arch/arm/mach-exynos/platsmp.c            |   2 +-
>  arch/arm/mach-exynos/pmu.c                |   3 +-
>  arch/arm/mach-exynos/suspend.c            |   4 +-
>  drivers/clk/samsung/clk-exynos5250.c      |  31 +++++
>  drivers/cpufreq/Kconfig.arm               |  11 --
>  drivers/cpufreq/Makefile                  |   1 -
>  drivers/cpufreq/exynos-cpufreq.c          |   9 +-
>  drivers/cpufreq/exynos-cpufreq.h          |  17 ---
>  drivers/cpufreq/exynos5250-cpufreq.c      | 210 ------------------------------
>  include/dt-bindings/clock/exynos5250.h    |   1 +
>  18 files changed, 84 insertions(+), 252 deletions(-)
>  delete mode 100644 drivers/cpufreq/exynos5250-cpufreq.c
> --

Applied above changes into fixes/non-critical, next/cleanup-samsung,
next/dt-samsung and next/cpufreq-clk-samsung according to the change.

BTW since I can't see any ack from cpufreq guy for the patch "cpufreq:
exynos: Fix for memory leak in case SOC name does not match" so I couldn't.

Thanks,
Kukjin

WARNING: multiple messages have this Message-ID (diff)
From: kgene@kernel.org (Kukjin Kim)
To: linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL] ARM: EXYNOS: mach: Improvements for 4.3
Date: Tue, 21 Jul 2015 14:02:35 +0900	[thread overview]
Message-ID: <06bb01d0c372$756f2250$604d66f0$@kernel.org> (raw)
In-Reply-To: <1437014519-19571-2-git-send-email-k.kozlowski@samsung.com>

Krzysztof Kozlowski wrote:
> 
> Dear Kukjin,
> 
> Exynos mach-code related improvements. Description along with a tag.
> You can find them also on the lists with my reviewed-by.
> 
> Best regards,
> Krzysztof
> 
> 
> The following changes since commit 1c4c7159ed2468f3ac4ce5a7f08d79663d381a93:
> 
>   Merge tag 'ext4_for_linus_stable' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4 (2015-
> 07-05 16:24:54 -0700)
> 
> are available in the git repository at:
> 
> 
>   https://github.com/krzk/linux.git tags/samsung-mach-4.3
> 
> for you to fetch changes up to 70f83b6716ea0e5944071c12ff1716f93a9c2d8d:
> 
>   cpufreq: exynos: remove Exynos5250 specific cpufreq driver support (2015-07-16 10:39:56 +0900)
> 
> ----------------------------------------------------------------
> Improvements for Exynos based boards:
> 1. Switch to generic cpufreq-dt driver for Exynos5250. The old driver
>    is removed.
> 2. Fix memory leak in cpufreq error path.
> 3. Cleanups: remove duplicated define with bootloader's sleep magic
>    constant, staticize local function, drop 'owner' from
>    platform driver, fix cast of iomem to ERR_PTR.
> 
> ----------------------------------------------------------------
> Bartlomiej Zolnierkiewicz (1):
>       cpufreq: exynos: remove Exynos5250 specific cpufreq driver support
> 
> Krzysztof Kozlowski (4):
>       ARM: EXYNOS: pmu: Make local function static
>       ARM: EXYNOS: Remove duplicated define of SLEEP_MAGIC
>       ARM: EXYNOS: pmu: Drop owner assignment
>       ARM: EXYNOS: Use IOMEM_ERR_PTR when function returns iomem
> 
> Shailendra Verma (1):
>       cpufreq: exynos: Fix for memory leak in case SOC name does not match
> 
> Thomas Abraham (3):
>       clk: samsung: exynos5250: add cpu clock configuration data and instantiate cpu clock
>       ARM: dts: Exynos5250: add CPU OPP and regulator supply property
>       ARM: Exynos: switch to using generic cpufreq driver for Exynos5250
> 
>  arch/arm/boot/dts/exynos5250-arndale.dts  |   4 +
>  arch/arm/boot/dts/exynos5250-smdk5250.dts |   4 +
>  arch/arm/boot/dts/exynos5250-snow.dts     |   4 +
>  arch/arm/boot/dts/exynos5250-spring.dts   |   4 +
>  arch/arm/boot/dts/exynos5250.dtsi         |  22 ++++
>  arch/arm/mach-exynos/common.h             |   6 +
>  arch/arm/mach-exynos/exynos.c             |   1 +
>  arch/arm/mach-exynos/firmware.c           |   2 -
>  arch/arm/mach-exynos/platsmp.c            |   2 +-
>  arch/arm/mach-exynos/pmu.c                |   3 +-
>  arch/arm/mach-exynos/suspend.c            |   4 +-
>  drivers/clk/samsung/clk-exynos5250.c      |  31 +++++
>  drivers/cpufreq/Kconfig.arm               |  11 --
>  drivers/cpufreq/Makefile                  |   1 -
>  drivers/cpufreq/exynos-cpufreq.c          |   9 +-
>  drivers/cpufreq/exynos-cpufreq.h          |  17 ---
>  drivers/cpufreq/exynos5250-cpufreq.c      | 210 ------------------------------
>  include/dt-bindings/clock/exynos5250.h    |   1 +
>  18 files changed, 84 insertions(+), 252 deletions(-)
>  delete mode 100644 drivers/cpufreq/exynos5250-cpufreq.c
> --

Applied above changes into fixes/non-critical, next/cleanup-samsung,
next/dt-samsung and next/cpufreq-clk-samsung according to the change.

BTW since I can't see any ack from cpufreq guy for the patch "cpufreq:
exynos: Fix for memory leak in case SOC name does not match" so I couldn't.

Thanks,
Kukjin

  reply	other threads:[~2015-07-21  5:02 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-16  2:41 [GIT PULL] ARM: EXYNOS: dts: Improvements for 4.3 Krzysztof Kozlowski
2015-07-16  2:41 ` Krzysztof Kozlowski
2015-07-16  2:41 ` [GIT PULL] ARM: EXYNOS: mach: " Krzysztof Kozlowski
2015-07-16  2:41   ` Krzysztof Kozlowski
2015-07-21  5:02   ` Kukjin Kim [this message]
2015-07-21  5:02     ` Kukjin Kim
2015-07-21  5:13     ` Krzysztof Kozlowski
2015-07-21  5:13       ` Krzysztof Kozlowski
2015-07-21  5:21       ` Krzysztof Kozlowski
2015-07-21  5:21         ` Krzysztof Kozlowski
2015-07-21 23:45         ` Krzysztof Kozlowski
2015-07-21 23:45           ` Krzysztof Kozlowski
2015-07-23  7:58           ` Kukjin Kim
2015-07-23  7:58             ` Kukjin Kim
2015-07-23  8:11             ` Kukjin Kim
2015-07-23  8:11               ` Kukjin Kim
2015-07-23  8:18               ` Krzysztof Kozlowski
2015-07-23  8:18                 ` Krzysztof Kozlowski
2015-07-21  4:56 ` [GIT PULL] ARM: EXYNOS: dts: " Kukjin Kim
2015-07-21  4:56   ` 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='06bb01d0c372$756f2250$604d66f0$@kernel.org' \
    --to=kgene@kernel.org \
    --cc=k.kozlowski@samsung.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    /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.