Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 67576
b: refs/heads/master
c: 52aff9f
h: refs/heads/master
v: v3
  • Loading branch information
Scott Wood authored and Kumar Gala committed Oct 11, 2007
1 parent fb59bac commit 48c9639
Show file tree
Hide file tree
Showing 17 changed files with 187 additions and 1,372 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: 895532a166010d8d8b4d58d63d21012eced22492
refs/heads/master: 52aff9f93e452b3a55be74018dc90eb0ddde0a9c
4 changes: 1 addition & 3 deletions trunk/MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -2288,8 +2288,6 @@ S: Maintained
LINUX FOR POWERPC EMBEDDED MPC52XX
P: Sylvain Munaut
M: tnt@246tNt.com
P: Grant Likely
M: grant.likely@secretlab.ca
W: http://www.246tNt.com/mpc52xx/
W: http://www.penguinppc.org/
L: linuxppc-dev@ozlabs.org
Expand All @@ -2308,7 +2306,7 @@ S: Maintained
LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
P: Grant Likely
M: grant.likely@secretlab.ca
W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
W: http://www.secretlab.ca/
L: linuxppc-dev@ozlabs.org
S: Maintained

Expand Down
252 changes: 0 additions & 252 deletions trunk/arch/powerpc/boot/dts/kilauea.dts

This file was deleted.

2 changes: 1 addition & 1 deletion trunk/arch/powerpc/boot/dts/mpc8272ads.dts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
#address-cells = <1>;
#size-cells = <1>;
compatible = "fsl,mpc8272-cpm", "fsl,cpm2";
reg = <119c0 30 0 2000>;
reg = <119c0 30>;
ranges;

muram@0 {
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/powerpc/boot/uartlite.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ static void uartlite_putc(unsigned char c)

static unsigned char uartlite_getc(void)
{
u32 reg = 0;
while (!(reg & ULITE_STATUS_RXVALID)) /* spin waiting for RXVALID bit */
u32 reg = ULITE_STATUS_RXVALID;
while (reg & ULITE_STATUS_RXVALID) /* spin on RXVALID bit */
reg = in_be32(reg_base + ULITE_STATUS);
return in_be32(reg_base + ULITE_RX);
}
Expand Down
Loading

0 comments on commit 48c9639

Please sign in to comment.