From da65432eb6d5b374c32a02e86e06b0938a977920 Mon Sep 17 00:00:00 2001 From: Carl-Daniel Hailfinger Date: Thu, 23 Jul 2009 01:44:38 +0000 Subject: Fix erase for SST49LF020A The chip supports multiple erase functions, but the function we use has an eraseblock size of 4k. Corresponding to flashrom svn r664. Signed-off-by: Carl-Daniel Hailfinger Acked-by: Stefan Reinauer --- flashchips.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flashchips.c b/flashchips.c index fa5fdff..e6b86a0 100644 --- a/flashchips.c +++ b/flashchips.c @@ -2160,7 +2160,7 @@ struct flashchip flashchips[] = { .manufacture_id = SST_ID, .model_id = SST_49LF020A, .total_size = 256, - .page_size = 16 * 1024, + .page_size = 4 * 1024, .tested = TEST_UNTESTED, .probe = probe_jedec, .probe_timing = 1, /* 150 ns */ -- cgit v1.1