Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 67368
b: refs/heads/master
c: 70dea47
h: refs/heads/master
v: v3
  • Loading branch information
Hollis Blanchard authored and Josh Boyer committed Sep 20, 2007
1 parent 9acfdfe commit b2820e8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 504ca43e5e681b8ed3837f11ea458eb145a82e4e
refs/heads/master: 70dea47da12932cc512e09124a836ddd3499ab39
11 changes: 11 additions & 0 deletions trunk/arch/powerpc/kernel/udbg_16550.c
Original file line number Diff line number Diff line change
Expand Up @@ -206,11 +206,22 @@ static void udbg_44x_as1_putc(char c)
}
}

static int udbg_44x_as1_getc(void)
{
if (udbg_comport) {
while ((as1_readb(&udbg_comport->lsr) & LSR_DR) == 0)
; /* wait for char */
return as1_readb(&udbg_comport->rbr);
}
return -1;
}

void __init udbg_init_44x_as1(void)
{
udbg_comport =
(volatile struct NS16550 __iomem *)PPC44x_EARLY_DEBUG_VIRTADDR;

udbg_putc = udbg_44x_as1_putc;
udbg_getc = udbg_44x_as1_getc;
}
#endif /* CONFIG_PPC_EARLY_DEBUG_44x */

0 comments on commit b2820e8

Please sign in to comment.