Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 326594
b: refs/heads/master
c: 49d394b
h: refs/heads/master
v: v3
  • Loading branch information
Arnd Bergmann committed Sep 19, 2012
1 parent 795fa94 commit 5e1810a
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: c8d9aab065c530db5c38e78eec7e164962f5cb23
refs/heads/master: 49d394be042d97f584ae8577bc32700792333f04
4 changes: 2 additions & 2 deletions trunk/arch/arm/mach-prima2/include/mach/uncompress.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ static __inline__ void putc(char c)
* during kernel decompression, all mappings are flat:
* virt_addr == phys_addr
*/
while (__raw_readl(SIRFSOC_UART1_PA_BASE + SIRFSOC_UART_TXFIFO_STATUS)
while (__raw_readl((void __iomem *)SIRFSOC_UART1_PA_BASE + SIRFSOC_UART_TXFIFO_STATUS)
& SIRFSOC_UART1_TXFIFO_FULL)
barrier();

__raw_writel(c, SIRFSOC_UART1_PA_BASE + SIRFSOC_UART_TXFIFO_DATA);
__raw_writel(c, (void __iomem *)SIRFSOC_UART1_PA_BASE + SIRFSOC_UART_TXFIFO_DATA);
}

static inline void flush(void)
Expand Down

0 comments on commit 5e1810a

Please sign in to comment.