diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-05-18 19:09:58 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-05-19 00:59:20 +0200 |
commit | 3cc27b426aeefe2930f911692e9df3143fb2565f (patch) | |
tree | 786abab3e7b4259567a26e4574bab2301b54c091 /board | |
parent | 311f3446930c1e64c12026c1cfd00500b05be52d (diff) | |
download | u-boot-imx-3cc27b426aeefe2930f911692e9df3143fb2565f.zip u-boot-imx-3cc27b426aeefe2930f911692e9df3143fb2565f.tar.gz u-boot-imx-3cc27b426aeefe2930f911692e9df3143fb2565f.tar.bz2 |
i386: Fix multiple definitions of __show_boot_progress
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/sc520_cdp/sc520_cdp_asm.S | 4 | ||||
-rw-r--r-- | board/sc520_spunk/sc520_spunk_asm.S | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/board/sc520_cdp/sc520_cdp_asm.S b/board/sc520_cdp/sc520_cdp_asm.S index be7b2bb..7f70d65 100644 --- a/board/sc520_cdp/sc520_cdp_asm.S +++ b/board/sc520_cdp/sc520_cdp_asm.S @@ -76,8 +76,8 @@ done: movb $0x88, %al jmp *%ebp /* return to caller */ -.globl __show_boot_progress -__show_boot_progress: +.globl show_boot_progress +show_boot_progress: out %al, $0x80 xchg %al, %ah movw $0x680, %dx diff --git a/board/sc520_spunk/sc520_spunk_asm.S b/board/sc520_spunk/sc520_spunk_asm.S index 8b34103..0127076 100644 --- a/board/sc520_spunk/sc520_spunk_asm.S +++ b/board/sc520_spunk/sc520_spunk_asm.S @@ -73,8 +73,8 @@ done: movl $0xfffefc32,%edx jmp *%ebp /* return to caller */ -.globl __show_boot_progress -__show_boot_progress: +.globl show_boot_progress +show_boot_progress: movl $0xfffefc32,%edx xorw $0xffff, %ax movw %ax,(%edx) |