Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 312440
b: refs/heads/master
c: 36d93d8
h: refs/heads/master
v: v3
  • Loading branch information
Ingo Molnar committed Jul 22, 2012
1 parent 2b350ba commit 8a3c7dc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d872818dbbeed1bccf58c7f8c7db432154c802f9
refs/heads/master: 36d93d88a5396baa135f8bcde7b8501dfe3b8e53
12 changes: 6 additions & 6 deletions trunk/arch/x86/kernel/early_printk.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,22 +119,22 @@ static __init void early_serial_init(char *s)
unsigned char c;
unsigned divisor;
unsigned baud = DEFAULT_BAUD;
ssize_t ret;
char *e;

if (*s == ',')
++s;

if (*s) {
unsigned port;
if (!strncmp(s, "0x", 2)) {
ret = kstrtoint(s, 16, &early_serial_base);
early_serial_base = simple_strtoul(s, &e, 16);
} else {
static const int __initconst bases[] = { 0x3f8, 0x2f8 };

if (!strncmp(s, "ttyS", 4))
s += 4;
ret = kstrtouint(s, 10, &port);
if (ret || port > 1)
port = simple_strtoul(s, &e, 10);
if (port > 1 || s == e)
port = 0;
early_serial_base = bases[port];
}
Expand All @@ -149,8 +149,8 @@ static __init void early_serial_init(char *s)
outb(0x3, early_serial_base + MCR); /* DTR + RTS */

if (*s) {
ret = kstrtouint(s, 0, &baud);
if (ret || baud == 0)
baud = simple_strtoul(s, &e, 0);
if (baud == 0 || s == e)
baud = DEFAULT_BAUD;
}

Expand Down

0 comments on commit 8a3c7dc

Please sign in to comment.