* [GIT PULL] Third Round of Renesas ARM Based SoC Updates for v3.15
@ 2014-02-21 6:13 Simon Horman
2014-03-17 7:28 ` Olof Johansson
0 siblings, 1 reply; 5+ messages in thread
From: Simon Horman @ 2014-02-21 6:13 UTC (permalink / raw)
To: linux-arm-kernel
Hi Olof, Hi Kevin, Hi Arnd,
Please consider this third round of Renesas ARM based SoC updates for v3.15.
This pull request is based on the previous round of
such requests, tagged as renesas-soc2-for-v3.15,
which I have already sent a pull-request for.
The following changes since commit 74b9ba5f35fbd071f313781498a9e244bcc6f03e:
ARM: shmobile: r8a7790: Correct SYS DMAC clock defines (2014-02-07 09:24:07 +0900)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-soc3-for-v3.15
for you to fetch changes up to db47204b32dd0d72454b4f841d0f7e33c44ee2b8:
ARM: shmobile: Remove __init from rcar_gen2_read_mode_pins() (2014-02-18 13:25:09 +0900)
----------------------------------------------------------------
Third Round of Renesas ARM Based SoC Updates for v3.15
* R-Car Gen2 SoCs: r8a7791 (R-Car M2) and r8a7790 (R-Car H2)
- Remove __init from rcar_gen2_read_mode_pins()
* r8a7791 SoC (R-Car M2)
- Add r8a7791 legacy SDHI clocks
* r8a7790 SoC (R-Car M2)
- Remove legacy DT clocks
----------------------------------------------------------------
Magnus Damm (3):
ARM: shmobile: Add r8a7791 legacy SDHI clocks
ARM: shmobile: Remove legacy r8a7790 DT clocks
ARM: shmobile: Remove __init from rcar_gen2_read_mode_pins()
arch/arm/mach-shmobile/clock-r8a7790.c | 11 -------
arch/arm/mach-shmobile/clock-r8a7791.c | 51 ++++++++++++++++++++++++++++++--
arch/arm/mach-shmobile/setup-rcar-gen2.c | 2 +-
3 files changed, 50 insertions(+), 14 deletions(-)
^ permalink raw reply [flat|nested] 5+ messages in thread
* [GIT PULL] Third Round of Renesas ARM Based SoC Updates for v3.15
@ 2014-03-10 8:36 Simon Horman
2014-03-10 8:36 ` [PATCH] ARM: shmobile: APMU: Fix warnings due to improper printk formats Simon Horman
2014-03-17 7:50 ` [GIT PULL] Third Round of Renesas ARM Based SoC Updates for v3.15 Olof Johansson
0 siblings, 2 replies; 5+ messages in thread
From: Simon Horman @ 2014-03-10 8:36 UTC (permalink / raw)
To: linux-arm-kernel
Hi Olof, Hi Kevin, Hi Arnd,
Please consider this third round of Renesas ARM based SoC updates for v3.15.
I am sending this pull request after the release of v3.14-rc6
as it only includes a fix.
This pull request is based on the previous round of
such requests, tagged as renesas-soc2-for-v3.15,
which I have already sent a pull-request for.
The following changes since commit c4ca5d80e03559fd95c526ece5ce39fc732a2511:
ARM: shmobile: Move SYSC base variable to inside ifdefs (2014-02-26 14:53:35 +0900)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-soc3-for-v3.15
for you to fetch changes up to 56ff873122c4baab43df241c7701d043b8ec8a8e:
ARM: shmobile: APMU: Fix warnings due to improper printk formats (2014-03-06 13:14:03 +0900)
----------------------------------------------------------------
Third Round of Renesas ARM Based SoC Updates for v3.15
Fix warnings due to improper printk formats in shared APMU code.
----------------------------------------------------------------
Laurent Pinchart (1):
ARM: shmobile: APMU: Fix warnings due to improper printk formats
arch/arm/mach-shmobile/platsmp-apmu.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] ARM: shmobile: APMU: Fix warnings due to improper printk formats
2014-03-10 8:36 [GIT PULL] Third Round of Renesas ARM Based SoC Updates for v3.15 Simon Horman
@ 2014-03-10 8:36 ` Simon Horman
2014-03-17 7:50 ` [GIT PULL] Third Round of Renesas ARM Based SoC Updates for v3.15 Olof Johansson
1 sibling, 0 replies; 5+ messages in thread
From: Simon Horman @ 2014-03-10 8:36 UTC (permalink / raw)
To: linux-arm-kernel
From: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Use the %pr printk specifier to print resource variables. This fixes
warnings on platforms where resource_size_t has a different size than
int.
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
arch/arm/mach-shmobile/platsmp-apmu.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/arch/arm/mach-shmobile/platsmp-apmu.c b/arch/arm/mach-shmobile/platsmp-apmu.c
index 1da5a72..8cb641c 100644
--- a/arch/arm/mach-shmobile/platsmp-apmu.c
+++ b/arch/arm/mach-shmobile/platsmp-apmu.c
@@ -75,8 +75,7 @@ static void apmu_init_cpu(struct resource *res, int cpu, int bit)
apmu_cpus[cpu].iomem = ioremap_nocache(res->start, resource_size(res));
apmu_cpus[cpu].bit = bit;
- pr_debug("apmu ioremap %d %d 0x%08x 0x%08x\n", cpu, bit,
- res->start, resource_size(res));
+ pr_debug("apmu ioremap %d %d %pr\n", cpu, bit, res);
}
static struct {
--
1.8.5.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [GIT PULL] Third Round of Renesas ARM Based SoC Updates for v3.15
2014-02-21 6:13 Simon Horman
@ 2014-03-17 7:28 ` Olof Johansson
0 siblings, 0 replies; 5+ messages in thread
From: Olof Johansson @ 2014-03-17 7:28 UTC (permalink / raw)
To: linux-arm-kernel
On Fri, Feb 21, 2014 at 03:13:09PM +0900, Simon Horman wrote:
> Hi Olof, Hi Kevin, Hi Arnd,
>
> Please consider this third round of Renesas ARM based SoC updates for v3.15.
>
> This pull request is based on the previous round of
> such requests, tagged as renesas-soc2-for-v3.15,
> which I have already sent a pull-request for.
>
>
> The following changes since commit 74b9ba5f35fbd071f313781498a9e244bcc6f03e:
>
> ARM: shmobile: r8a7790: Correct SYS DMAC clock defines (2014-02-07 09:24:07 +0900)
>
> are available in the git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-soc3-for-v3.15
As per email on the second SoC pull request; I'm not pulling this specific
request in (there seems to be a new cumulative tag with the same name, I'll
come across that pull request as I work through the backlog :)
-Olof
^ permalink raw reply [flat|nested] 5+ messages in thread
* [GIT PULL] Third Round of Renesas ARM Based SoC Updates for v3.15
2014-03-10 8:36 [GIT PULL] Third Round of Renesas ARM Based SoC Updates for v3.15 Simon Horman
2014-03-10 8:36 ` [PATCH] ARM: shmobile: APMU: Fix warnings due to improper printk formats Simon Horman
@ 2014-03-17 7:50 ` Olof Johansson
1 sibling, 0 replies; 5+ messages in thread
From: Olof Johansson @ 2014-03-17 7:50 UTC (permalink / raw)
To: linux-arm-kernel
On Mon, Mar 10, 2014 at 05:36:55PM +0900, Simon Horman wrote:
> Hi Olof, Hi Kevin, Hi Arnd,
>
> Please consider this third round of Renesas ARM based SoC updates for v3.15.
>
> I am sending this pull request after the release of v3.14-rc6
> as it only includes a fix.
>
> This pull request is based on the previous round of
> such requests, tagged as renesas-soc2-for-v3.15,
> which I have already sent a pull-request for.
>
>
> The following changes since commit c4ca5d80e03559fd95c526ece5ce39fc732a2511:
>
> ARM: shmobile: Move SYSC base variable to inside ifdefs (2014-02-26 14:53:35 +0900)
>
> are available in the git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-soc3-for-v3.15
>
> for you to fetch changes up to 56ff873122c4baab43df241c7701d043b8ec8a8e:
>
> ARM: shmobile: APMU: Fix warnings due to improper printk formats (2014-03-06 13:14:03 +0900)
>
Merged, thanks!
-Olof
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-03-17 7:50 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-10 8:36 [GIT PULL] Third Round of Renesas ARM Based SoC Updates for v3.15 Simon Horman
2014-03-10 8:36 ` [PATCH] ARM: shmobile: APMU: Fix warnings due to improper printk formats Simon Horman
2014-03-17 7:50 ` [GIT PULL] Third Round of Renesas ARM Based SoC Updates for v3.15 Olof Johansson
-- strict thread matches above, loose matches on Subject: below --
2014-02-21 6:13 Simon Horman
2014-03-17 7:28 ` Olof Johansson
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).