diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2006-03-28 11:34:05 +0200 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-03-28 11:34:05 +0200 |
commit | de4533a04eb4f66dbef71f59a9c118256b886823 (patch) | |
tree | 8b8681da4294bf7be9d1cde44bfbf303843ba359 /arch/arm/boot/compressed/ice-dcc.S | |
parent | [ARM] Fix decompressor serial IO to give CRLF not LFCR (diff) | |
download | linux-de4533a04eb4f66dbef71f59a9c118256b886823.tar.xz linux-de4533a04eb4f66dbef71f59a9c118256b886823.zip |
[ARM] Move ice-dcc code into misc.c
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/boot/compressed/ice-dcc.S')
-rw-r--r-- | arch/arm/boot/compressed/ice-dcc.S | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/arch/arm/boot/compressed/ice-dcc.S b/arch/arm/boot/compressed/ice-dcc.S deleted file mode 100644 index 104377a199bb..000000000000 --- a/arch/arm/boot/compressed/ice-dcc.S +++ /dev/null @@ -1,17 +0,0 @@ - - - .text - - .global icedcc_putc - -icedcc_putc: - mov r2, #0x4000000 -1: - subs r2, r2, #1 - movlt pc, r14 - mrc p14, 0, r1, c0, c0, 0 - tst r1, #2 - bne 1b - - mcr p14, 0, r0, c1, c0, 0 - mov pc, r14 |