From b28349f8bc40dd55524113e258b3185711e80366 Mon Sep 17 00:00:00 2001 From: Carl-Daniel Hailfinger Date: Fri, 8 Oct 2010 20:29:57 +0000 Subject: Remove progress printing from individual flash chip drivers Progress printing should be handled in the generic code, and will end up there once partial write is possible. Corresponding to flashrom svn r1207. Signed-off-by: Carl-Daniel Hailfinger Acked-by: Sean Nelson --- sst49lfxxxc.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'sst49lfxxxc.c') diff --git a/sst49lfxxxc.c b/sst49lfxxxc.c index f31e22c..a6571ef 100644 --- a/sst49lfxxxc.c +++ b/sst49lfxxxc.c @@ -84,16 +84,11 @@ int write_49lfxxxc(struct flashchip *flash, uint8_t *buf) chipaddr bios = flash->virtual_memory; write_lockbits_49lfxxxc(flash, 0); - msg_cinfo("Programming page: "); for (i = 0; i < total_size / page_size; i++) { - /* write to the sector */ - msg_cinfo("%04d at address: 0x%08x", i, i * page_size); write_page_82802ab(bios, buf + i * page_size, bios + i * page_size, page_size); - msg_cinfo("\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b"); } - msg_cinfo("\n"); chip_writeb(0xFF, bios); -- cgit v1.1