-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 372120 b: refs/heads/master c: 3b4af9b h: refs/heads/master v: v3
- Loading branch information
Shawn Guo
authored and
Russell King
committed
Mar 15, 2013
1 parent
b64dbfe
commit 4a7d57d
Showing
5 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 615967b00fecc9e636dc59bf1ee322274f7dd041 | ||
refs/heads/master: 3b4af9bc24472a9411837ad0794312028df1fbd9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#include <linux/linkage.h> | ||
#include <asm/assembler.h> | ||
|
||
#include CONFIG_DEBUG_LL_INCLUDE | ||
|
||
ENTRY(putc) | ||
addruart r1, r2, r3 | ||
waituart r3, r1 | ||
senduart r0, r1 | ||
busyuart r3, r1 | ||
mov pc, lr | ||
ENDPROC(putc) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
#ifdef CONFIG_DEBUG_UNCOMPRESS | ||
extern void putc(int c); | ||
#else | ||
static inline void putc(int c) {} | ||
#endif | ||
static inline void flush(void) {} | ||
static inline void arch_decomp_setup(void) {} |