Commit 8df32119 authored by Olof Johansson's avatar Olof Johansson

Merge tag 'renesas-cleanup-for-v3.16' of...

Merge tag 'renesas-cleanup-for-v3.16' of git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas into next/cleanup

Merge "Renesas ARM Based SoC Cleanup Updates for v3.16" from Simon Horman:

r8a7740 (R-Mobile A1) SoC
* Make r8a7740_meram_workaround() __init
* Remove unused r8a7740_add_early_devices_dt()

r8a7740 (R-Mobile A1) based Armadillo800 EVA board
* Spelling and grammar fixes

sh7372 (SH-Mobile AP4) SoC
* Call sh7372_add_early_devices() instead of open coding

* tag 'renesas-cleanup-for-v3.16' of git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas:
  ARM: shmobile: r8a7740: Make r8a7740_meram_workaround() __init
  ARM: shmobile: sh7372: Call sh7372_add_early_devices() instead of open coding
  ARM: shmobile: r8a7740: Remove unused r8a7740_add_early_devices_dt()
  ARM: shmobile: armadillo800eva: Spelling and grammar
Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
parents 186a73dc bb6c3d58
...@@ -205,8 +205,8 @@ config MACH_ARMADILLO800EVA_REFERENCE ...@@ -205,8 +205,8 @@ config MACH_ARMADILLO800EVA_REFERENCE
select SND_SOC_WM8978 if SND_SIMPLE_CARD select SND_SOC_WM8978 if SND_SIMPLE_CARD
select USE_OF select USE_OF
---help--- ---help---
Use reference implementation of Aramdillo800 EVA board support Use reference implementation of Armadillo800 EVA board support
which makes a greater use of device tree at the expense which makes greater use of device tree at the expense
of not supporting a number of devices. of not supporting a number of devices.
This is intended to aid developers This is intended to aid developers
......
...@@ -765,7 +765,7 @@ static struct platform_device *r8a7740_late_devices[] __initdata = { ...@@ -765,7 +765,7 @@ static struct platform_device *r8a7740_late_devices[] __initdata = {
* "Media RAM (MERAM)" on r8a7740 documentation * "Media RAM (MERAM)" on r8a7740 documentation
*/ */
#define MEBUFCNTR 0xFE950098 #define MEBUFCNTR 0xFE950098
void r8a7740_meram_workaround(void) void __init r8a7740_meram_workaround(void)
{ {
void __iomem *reg; void __iomem *reg;
...@@ -869,17 +869,6 @@ void __init r8a7740_add_early_devices(void) ...@@ -869,17 +869,6 @@ void __init r8a7740_add_early_devices(void)
#ifdef CONFIG_USE_OF #ifdef CONFIG_USE_OF
void __init r8a7740_add_early_devices_dt(void)
{
shmobile_setup_delay(800, 1, 3); /* Cortex-A9 @ 800MHz */
early_platform_add_devices(r8a7740_early_devices,
ARRAY_SIZE(r8a7740_early_devices));
/* setup early console here as well */
shmobile_setup_console();
}
void __init r8a7740_add_standard_devices_dt(void) void __init r8a7740_add_standard_devices_dt(void)
{ {
platform_add_devices(r8a7740_devices_dt, platform_add_devices(r8a7740_devices_dt,
......
...@@ -1037,11 +1037,7 @@ void __init sh7372_add_early_devices_dt(void) ...@@ -1037,11 +1037,7 @@ void __init sh7372_add_early_devices_dt(void)
{ {
shmobile_setup_delay(800, 1, 3); /* Cortex-A8 @ 800MHz */ shmobile_setup_delay(800, 1, 3); /* Cortex-A8 @ 800MHz */
early_platform_add_devices(sh7372_early_devices, sh7372_add_early_devices();
ARRAY_SIZE(sh7372_early_devices));
/* setup early console here as well */
shmobile_setup_console();
} }
void __init sh7372_add_standard_devices_dt(void) void __init sh7372_add_standard_devices_dt(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment