diff options
author | wdenk <wdenk> | 2002-11-03 17:56:27 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2002-11-03 17:56:27 +0000 |
commit | 24ee89b97a49826ea800b4a6c0d5c0769328e317 (patch) | |
tree | 82805272a9e85958f93167e10a5c08c886679cb9 /board/trab | |
parent | de180e6daa529dc78668c99bdf17a9cdd440782d (diff) | |
download | u-boot-24ee89b97a49826ea800b4a6c0d5c0769328e317.tar.gz u-boot-24ee89b97a49826ea800b4a6c0d5c0769328e317.tar.xz u-boot-24ee89b97a49826ea800b4a6c0d5c0769328e317.zip |
* Fix mdelay() on TRAB - this was still the debugging version with
seconds instead of ms.
* Patch by Robert Schwebel, 1 Nov 2002:
XScale related cleanup (affects all ARM boards)
* Cleanup of names, warnings, and README.
Diffstat (limited to 'board/trab')
-rw-r--r-- | board/trab/trab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/trab/trab.c b/board/trab/trab.c index 3f9b198698..b4ab329367 100644 --- a/board/trab/trab.c +++ b/board/trab/trab.c @@ -42,7 +42,7 @@ extern int do_mdm_init; /* defined in common/main.c */ * is that timers are not available yet, so we use a manually timed * loop. */ -#define KBD_MDELAY 100000 /* 1000 */ +#define KBD_MDELAY 1000 static void mdelay_no_timer (int msec) { DECLARE_GLOBAL_DATA_PTR; |