linux-sh.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] sh: fix the id of scif in SH7757
@ 2010-05-07  9:19 Yoshihiro Shimoda
  2010-05-07  9:23 ` Paul Mundt
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Yoshihiro Shimoda @ 2010-05-07  9:19 UTC (permalink / raw)
  To: linux-sh

Because the value of CONFIG_SERIAL_SH_SCI_NR_UARTS is 3.

Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
---
 arch/sh/kernel/cpu/sh4a/setup-sh7757.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7757.c b/arch/sh/kernel/cpu/sh4a/setup-sh7757.c
index 444aca9..93b7aa4 100644
--- a/arch/sh/kernel/cpu/sh4a/setup-sh7757.c
+++ b/arch/sh/kernel/cpu/sh4a/setup-sh7757.c
@@ -26,7 +26,7 @@ static struct plat_sci_port scif2_platform_data = {

 static struct platform_device scif2_device = {
 	.name		= "sh-sci",
-	.id		= 2,
+	.id		= 0,
 	.dev		= {
 		.platform_data	= &scif2_platform_data,
 	},
@@ -41,7 +41,7 @@ static struct plat_sci_port scif3_platform_data = {

 static struct platform_device scif3_device = {
 	.name		= "sh-sci",
-	.id		= 3,
+	.id		= 1,
 	.dev		= {
 		.platform_data	= &scif3_platform_data,
 	},
@@ -56,7 +56,7 @@ static struct plat_sci_port scif4_platform_data = {

 static struct platform_device scif4_device = {
 	.name		= "sh-sci",
-	.id		= 4,
+	.id		= 2,
 	.dev		= {
 		.platform_data	= &scif4_platform_data,
 	},
-- 
1.5.5

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

* Re: [PATCH] sh: fix the id of scif in SH7757
  2010-05-07  9:19 [PATCH] sh: fix the id of scif in SH7757 Yoshihiro Shimoda
@ 2010-05-07  9:23 ` Paul Mundt
  2010-05-07  9:50 ` Yoshihiro Shimoda
  2010-05-07  9:54 ` Paul Mundt
  2 siblings, 0 replies; 4+ messages in thread
From: Paul Mundt @ 2010-05-07  9:23 UTC (permalink / raw)
  To: linux-sh

On Fri, May 07, 2010 at 06:19:08PM +0900, Yoshihiro Shimoda wrote:
> Because the value of CONFIG_SERIAL_SH_SCI_NR_UARTS is 3.
> 
> Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>

If there are only 3 devices, then why do we have them named scif2, scif3,
and scif4? Presumably there used to be a scif0 and scif1?

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

* Re: [PATCH] sh: fix the id of scif in SH7757
  2010-05-07  9:19 [PATCH] sh: fix the id of scif in SH7757 Yoshihiro Shimoda
  2010-05-07  9:23 ` Paul Mundt
@ 2010-05-07  9:50 ` Yoshihiro Shimoda
  2010-05-07  9:54 ` Paul Mundt
  2 siblings, 0 replies; 4+ messages in thread
From: Yoshihiro Shimoda @ 2010-05-07  9:50 UTC (permalink / raw)
  To: linux-sh

Paul Mundt wrote:
> On Fri, May 07, 2010 at 06:19:08PM +0900, Yoshihiro Shimoda wrote:
>> Because the value of CONFIG_SERIAL_SH_SCI_NR_UARTS is 3.
>>
>> Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
> 
> If there are only 3 devices, then why do we have them named scif2, scif3,
> and scif4? Presumably there used to be a scif0 and scif1?

Yes, this cpu also has scif0 and scif1.
But those scif is only named "SCIF0" and "SCIF1".
Actually those functions are 16550 based serial port.
So I made this patch.

Thanks,
Yoshihiro Shimoda

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

* Re: [PATCH] sh: fix the id of scif in SH7757
  2010-05-07  9:19 [PATCH] sh: fix the id of scif in SH7757 Yoshihiro Shimoda
  2010-05-07  9:23 ` Paul Mundt
  2010-05-07  9:50 ` Yoshihiro Shimoda
@ 2010-05-07  9:54 ` Paul Mundt
  2 siblings, 0 replies; 4+ messages in thread
From: Paul Mundt @ 2010-05-07  9:54 UTC (permalink / raw)
  To: linux-sh

On Fri, May 07, 2010 at 06:50:48PM +0900, Yoshihiro Shimoda wrote:
> Paul Mundt wrote:
> > On Fri, May 07, 2010 at 06:19:08PM +0900, Yoshihiro Shimoda wrote:
> >> Because the value of CONFIG_SERIAL_SH_SCI_NR_UARTS is 3.
> >>
> >> Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
> > 
> > If there are only 3 devices, then why do we have them named scif2, scif3,
> > and scif4? Presumably there used to be a scif0 and scif1?
> 
> Yes, this cpu also has scif0 and scif1.
> But those scif is only named "SCIF0" and "SCIF1".
> Actually those functions are 16550 based serial port.
> 
If the 16550 based UARTs have been named SCIF0 and SCIF1 that really
doesn't bode well for the rest of the CPU..

I'll apply it, thanks for the clarification.

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

end of thread, other threads:[~2010-05-07  9:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-07  9:19 [PATCH] sh: fix the id of scif in SH7757 Yoshihiro Shimoda
2010-05-07  9:23 ` Paul Mundt
2010-05-07  9:50 ` Yoshihiro Shimoda
2010-05-07  9:54 ` Paul Mundt

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