Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 67571
b: refs/heads/master
c: aa2091b
h: refs/heads/master
i:
  67569: e462dc2
  67567: 4fd4b36
v: v3
  • Loading branch information
Grant Likely committed Oct 10, 2007
1 parent c7fc65d commit 46c213f
Show file tree
Hide file tree
Showing 70 changed files with 723 additions and 2,924 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: ad656887e22390c64276e0a0057541aec701422c
refs/heads/master: aa2091b5403a9149bdb1329cc0575d8fa9c39633
2 changes: 1 addition & 1 deletion trunk/MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -2306,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
4 changes: 0 additions & 4 deletions trunk/arch/powerpc/boot/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@ BOOTCFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \
-isystem $(shell $(CROSS32CC) -print-file-name=include)
BOOTAFLAGS := -D__ASSEMBLY__ $(BOOTCFLAGS) -traditional -nostdinc

ifdef CONFIG_DEBUG_INFO
BOOTCFLAGS += -g
endif

ifeq ($(call cc-option-yn, -fstack-protector),y)
BOOTCFLAGS += -fno-stack-protector
endif
Expand Down
252 changes: 0 additions & 252 deletions trunk/arch/powerpc/boot/dts/kilauea.dts

This file was deleted.

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 46c213f

Please sign in to comment.