From: Marc Zyngier <maz@misterjones.org>
To: sparclinux@vger.kernel.org
Subject: Re: 2.6.18-rc1 fails to boot on E250
Date: Mon, 17 Jul 2006 13:14:10 +0000 [thread overview]
Message-ID: <wrpirlwcr19.fsf@wild-wind.fr.eu.org> (raw)
In-Reply-To: <20060714.165308.83620688.davem@davemloft.net>
>>>>> "maz" = Marc Zyngier <maz@misterjones.org> writes:
maz> Would have to swap between 0x1fff1400000 and 0x1fff1400040. I'll try
maz> to come up with a patch if I can spare some time tonight.
I tried the following patch, without much success. Looks like
*nothing* hits the serial console if '-p' isn't set on the command
line. I still suspect that this patch is valid though. Oh well...
Off to some more head scratching.
M.
[SPARC64] Fix sunsab ports ordering
Register second SAB port before the first one, as serial A is wired to
it, and expected to appear as ttyS0.
Signed-off-by: Marc Zyngier <maz@misterjones.org>
diff --git a/drivers/serial/sunsab.c b/drivers/serial/sunsab.c
index 979497f..cb55d81 100644
--- a/drivers/serial/sunsab.c
+++ b/drivers/serial/sunsab.c
@@ -1061,8 +1061,8 @@ static int __devinit sab_probe(struct of
return err;
}
- uart_add_one_port(&sunsab_reg, &up[0].port);
uart_add_one_port(&sunsab_reg, &up[1].port);
+ uart_add_one_port(&sunsab_reg, &up[0].port);
dev_set_drvdata(&op->dev, &up[0]);
--
And if you don't know where you're going, any road will take you there...
next prev parent reply other threads:[~2006-07-17 13:14 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-07-14 23:53 2.6.18-rc1 fails to boot on E250 David Miller
2006-07-15 7:39 ` Marc Zyngier
2006-07-16 1:22 ` David Miller
2006-07-16 15:44 ` Marc Zyngier
2006-07-17 3:15 ` David Miller
2006-07-17 5:12 ` David Miller
2006-07-17 7:26 ` Marc Zyngier
2006-07-17 8:31 ` David Miller
2006-07-17 12:33 ` Marc Zyngier
2006-07-17 13:14 ` Marc Zyngier [this message]
2006-07-17 22:52 ` David Miller
2006-07-17 23:41 ` David Miller
2006-07-18 6:25 ` Marc Zyngier
2006-07-18 6:33 ` David Miller
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=wrpirlwcr19.fsf@wild-wind.fr.eu.org \
--to=maz@misterjones.org \
--cc=sparclinux@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.