linux-sh.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 2/2 v3] ARM: shmobile: r8a7778: rename device additional function for sdhi
@ 2013-05-27  1:42 Kuninori Morimoto
  2013-05-27 10:31 ` Sergei Shtylyov
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Kuninori Morimoto @ 2013-05-27  1:42 UTC (permalink / raw)
  To: linux-sh

Current r8a7778 is using r8a7778_sdhi_init().
Now, we use r8a7778_register_xxx() instead of it

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
v2 -> v3

 - no change, but become 2nd patch

>> Simon

This patch exchange both board/setup.
Please let me know if you need separated patch

 arch/arm/mach-shmobile/board-bockw.c          |    2 +-
 arch/arm/mach-shmobile/include/mach/r8a7778.h |    2 +-
 arch/arm/mach-shmobile/setup-r8a7778.c        |    4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/arm/mach-shmobile/board-bockw.c b/arch/arm/mach-shmobile/board-bockw.c
index 3958910..e70112c 100644
--- a/arch/arm/mach-shmobile/board-bockw.c
+++ b/arch/arm/mach-shmobile/board-bockw.c
@@ -131,7 +131,7 @@ static void __init bockw_init(void)
 		iowrite32(ioread32(base + PUPR4) | (3 << 26), base + PUPR4);
 		iounmap(base);
 
-		r8a7778_sdhi_init(0, &sdhi0_info);
+		r8a7778_register_sdhi(0, &sdhi0_info);
 	}
 }
 
diff --git a/arch/arm/mach-shmobile/include/mach/r8a7778.h b/arch/arm/mach-shmobile/include/mach/r8a7778.h
index 695cd76..c24e7eb 100644
--- a/arch/arm/mach-shmobile/include/mach/r8a7778.h
+++ b/arch/arm/mach-shmobile/include/mach/r8a7778.h
@@ -30,8 +30,8 @@ extern void r8a7778_init_irq_dt(void);
 extern void r8a7778_clock_init(void);
 extern void r8a7778_init_irq_extpin(int irlm);
 extern void r8a7778_pinmux_init(void);
-extern void r8a7778_sdhi_init(int id, struct sh_mobile_sdhi_info *info);
 
 extern void r8a7778_register_sheth(struct sh_eth_plat_data *pdata);
+extern void r8a7778_register_sdhi(int id, struct sh_mobile_sdhi_info *info);
 
 #endif /* __ASM_R8A7778_H__ */
diff --git a/arch/arm/mach-shmobile/setup-r8a7778.c b/arch/arm/mach-shmobile/setup-r8a7778.c
index 9bff1e1..e44daac 100644
--- a/arch/arm/mach-shmobile/setup-r8a7778.c
+++ b/arch/arm/mach-shmobile/setup-r8a7778.c
@@ -162,8 +162,8 @@ static struct resource sdhi_resources[] __initdata = {
 	DEFINE_RES_IRQ(gic_iid(0x76)),
 };
 
-void __init r8a7778_sdhi_init(int id,
-			      struct sh_mobile_sdhi_info *info)
+void __init r8a7778_register_sdhi(int id,
+				  struct sh_mobile_sdhi_info *info)
 {
 	BUG_ON(id < 0 || id > 2);
 
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 2/2 v3] ARM: shmobile: r8a7778: rename device additional function for sdhi
  2013-05-27  1:42 [PATCH 2/2 v3] ARM: shmobile: r8a7778: rename device additional function for sdhi Kuninori Morimoto
@ 2013-05-27 10:31 ` Sergei Shtylyov
  2013-06-27  8:13 ` Simon Horman
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Sergei Shtylyov @ 2013-05-27 10:31 UTC (permalink / raw)
  To: linux-sh

Hello.

On 27-05-2013 5:42, Kuninori Morimoto wrote:

> Current r8a7778 is using r8a7778_sdhi_init().
> Now, we use r8a7778_register_xxx() instead of it

> Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> ---
> v2 -> v3

>   - no change, but become 2nd patch

>>> Simon

> This patch exchange both board/setup.
> Please let me know if you need separated patch

     No, separate patches will break the build/bisection.

WBR, Sergei


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 2/2 v3] ARM: shmobile: r8a7778: rename device additional function for sdhi
  2013-05-27  1:42 [PATCH 2/2 v3] ARM: shmobile: r8a7778: rename device additional function for sdhi Kuninori Morimoto
  2013-05-27 10:31 ` Sergei Shtylyov
@ 2013-06-27  8:13 ` Simon Horman
  2013-06-28  5:03 ` Kuninori Morimoto
  2013-06-28  5:12 ` Simon Horman
  3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2013-06-27  8:13 UTC (permalink / raw)
  To: linux-sh

On Mon, May 27, 2013 at 02:31:01PM +0400, Sergei Shtylyov wrote:
> Hello.
> 
> On 27-05-2013 5:42, Kuninori Morimoto wrote:
> 
> >Current r8a7778 is using r8a7778_sdhi_init().
> >Now, we use r8a7778_register_xxx() instead of it
> 
> >Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> >---
> >v2 -> v3
> 
> >  - no change, but become 2nd patch
> 
> >>>Simon
> 
> >This patch exchange both board/setup.
> >Please let me know if you need separated patch
> 
>     No, separate patches will break the build/bisection.

Hi Morimoto,

this patch no longer applies.

Could you rebase it, for example on top of renesas-next-20130627,
and repost if the change is still appropriate?

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 2/2 v3] ARM: shmobile: r8a7778: rename device additional function for sdhi
  2013-05-27  1:42 [PATCH 2/2 v3] ARM: shmobile: r8a7778: rename device additional function for sdhi Kuninori Morimoto
  2013-05-27 10:31 ` Sergei Shtylyov
  2013-06-27  8:13 ` Simon Horman
@ 2013-06-28  5:03 ` Kuninori Morimoto
  2013-06-28  5:12 ` Simon Horman
  3 siblings, 0 replies; 5+ messages in thread
From: Kuninori Morimoto @ 2013-06-28  5:03 UTC (permalink / raw)
  To: linux-sh


Hi Simon

> Hi Morimoto,
> 
> this patch no longer applies.
> 
> Could you rebase it, for example on top of renesas-next-20130627,
> and repost if the change is still appropriate?

I forgot detail of this patch,
but Maguns pointed that this kind of cosmetic patch
makes back-port difficult.
You can drop these patch set

Best regards
---
Kuninori Morimoto

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 2/2 v3] ARM: shmobile: r8a7778: rename device additional function for sdhi
  2013-05-27  1:42 [PATCH 2/2 v3] ARM: shmobile: r8a7778: rename device additional function for sdhi Kuninori Morimoto
                   ` (2 preceding siblings ...)
  2013-06-28  5:03 ` Kuninori Morimoto
@ 2013-06-28  5:12 ` Simon Horman
  3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2013-06-28  5:12 UTC (permalink / raw)
  To: linux-sh

On Thu, Jun 27, 2013 at 10:03:08PM -0700, Kuninori Morimoto wrote:
> 
> Hi Simon
> 
> > Hi Morimoto,
> > 
> > this patch no longer applies.
> > 
> > Could you rebase it, for example on top of renesas-next-20130627,
> > and repost if the change is still appropriate?
> 
> I forgot detail of this patch,
> but Maguns pointed that this kind of cosmetic patch
> makes back-port difficult.
> You can drop these patch set

Thanks, dropped.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-06-28  5:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-27  1:42 [PATCH 2/2 v3] ARM: shmobile: r8a7778: rename device additional function for sdhi Kuninori Morimoto
2013-05-27 10:31 ` Sergei Shtylyov
2013-06-27  8:13 ` Simon Horman
2013-06-28  5:03 ` Kuninori Morimoto
2013-06-28  5:12 ` Simon Horman

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).