Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 233486
b: refs/heads/master
c: ac1556b
h: refs/heads/master
v: v3
  • Loading branch information
viresh kumar authored and Russell King committed Feb 21, 2011
1 parent f7bd2f9 commit fb1f7b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: d16613586aa064d87ef05e3b929e3b4fdc714cc4
refs/heads/master: ac1556b37e9b06a41d7691dca0d50a28210488f9
4 changes: 2 additions & 2 deletions trunk/arch/arm/plat-spear/include/plat/uncompress.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ static inline void putc(int c)
{
void __iomem *base = (void __iomem *)SPEAR_DBG_UART_BASE;

while (readl(base + UART01x_FR) & UART01x_FR_TXFF)
while (readl_relaxed(base + UART01x_FR) & UART01x_FR_TXFF)
barrier();

writel(c, base + UART01x_DR);
writel_relaxed(c, base + UART01x_DR);
}

static inline void flush(void)
Expand Down

0 comments on commit fb1f7b9

Please sign in to comment.