diff options
author | Kim Phillips <kim.phillips@freescale.com> | 2007-07-11 17:48:09 -0500 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2007-07-11 17:48:09 -0500 |
commit | 9e04033d47410f888459458d5f35a0933584d7c8 (patch) | |
tree | 07751c255514af48eff09c2382269d431c2056f9 /board/sc520_cdp | |
parent | 0459e7d3a0a273064b738aa2e06fd7dcd35eec58 (diff) | |
parent | 4ef218f6fdf8d747f4589da5252b004e7d2c2876 (diff) |
Merge git://www.denx.de/git/u-boot
Diffstat (limited to 'board/sc520_cdp')
-rw-r--r-- | board/sc520_cdp/sc520_cdp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/sc520_cdp/sc520_cdp.c b/board/sc520_cdp/sc520_cdp.c index b6add59bb4..f6f0e72443 100644 --- a/board/sc520_cdp/sc520_cdp.c +++ b/board/sc520_cdp/sc520_cdp.c @@ -507,6 +507,7 @@ int dram_init(void) void show_boot_progress(int val) { + if (val < -32) val = -1; /* let things compatible */ outb(val&0xff, 0x80); outb((val&0xff00)>>8, 0x680); } |