diff options
author | wdenk <wdenk> | 2003-06-28 17:24:46 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-06-28 17:24:46 +0000 |
commit | d1cbe85b084ce543ba0b09def03a1b20940e6c03 (patch) | |
tree | 1cbfceb46952e902208d58595d163143d6038e8a /board/lwmon | |
parent | 8bde7f776c77b343aca29b8c7b58464d915ac245 (diff) |
Merge from "stable branch", tag LABEL_2003_06_28_1800-stable:
- Allow to call sysmon function interactively
- PIC on LWMON board needs delay after power-on
- Add missing RSR definitions for MPC8xx
- Improve log buffer handling: guarantee clean reset after power-on
- Add support for EXBITGEN board
- Add support for SL8245 board
Diffstat (limited to 'board/lwmon')
-rw-r--r-- | board/lwmon/lwmon.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/board/lwmon/lwmon.c b/board/lwmon/lwmon.c index b359ec758d1..91aa58cf29d 100644 --- a/board/lwmon/lwmon.c +++ b/board/lwmon/lwmon.c @@ -513,6 +513,9 @@ static void kbd_init (void) gd->kbd_status = 0; + /* Forced by PIC. Delays <= 175us loose */ + udelay(1000); + /* Read initial keyboard error code */ val = KEYBD_CMD_READ_STATUS; i2c_write (kbd_addr, 0, 0, &val, 1); |