diff options
author | Peter Stuge <peter@stuge.se> | 2008-06-21 00:19:52 +0000 |
---|---|---|
committer | Peter Stuge <peter@stuge.se> | 2008-06-21 00:19:52 +0000 |
commit | 6a9fd1dc8c1115affe39fb39a04dc6e051eb34cc (patch) | |
tree | 016ec42c4f7887077ba440d02c4f7f5d891edb4d | |
parent | cb5c211a480a4f38cce38b536220f7079ea5256d (diff) | |
download | flashrom-6a9fd1dc8c1115affe39fb39a04dc6e051eb34cc.tar.gz flashrom-6a9fd1dc8c1115affe39fb39a04dc6e051eb34cc.tar.bz2 flashrom-6a9fd1dc8c1115affe39fb39a04dc6e051eb34cc.zip |
Increase delay in probe_jedec() to 2ms to reliably detect AT29C020
Run time is increased a few 100ms but this is needed for reliability.
I consider this trivial.
Corresponding to flashrom svn r262 and coreboot v2 svn r3373.
Signed-off-by: Peter Stuge <peter@stuge.se>
Acked-by: Peter Stuge <peter@stuge.se>
-rw-r--r-- | jedec.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -103,7 +103,7 @@ int probe_jedec(struct flashchip *flash) * needs 10 ms according to the data sheet, but it has been tested * to work reliably with 20 us. Allow a factor of 2 safety margin. */ - myusec_delay(40); + myusec_delay(2000); /* Read product ID */ id1 = *(volatile uint8_t *)bios; |