From 355cbfdbef1fbd41b635a5b92195689fd4d3c0b1 Mon Sep 17 00:00:00 2001 From: Stefan Tauner Date: Sat, 28 May 2011 02:37:14 +0000 Subject: Small fixes - missing spaces in code and output - improved documentation/naming/output - missing line breaks in spi probing functions Corresponding to flashrom svn r1321. Signed-off-by: Stefan Tauner Acked-by: Stefan Tauner --- flashrom.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'flashrom.c') diff --git a/flashrom.c b/flashrom.c index 14d5263..e9e6a77 100644 --- a/flashrom.c +++ b/flashrom.c @@ -1312,7 +1312,7 @@ int read_flash_to_file(struct flashchip *flash, char *filename) goto out_free; } - ret = write_buf_to_file(buf, flash->total_size * 1024, filename); + ret = write_buf_to_file(buf, size, filename); out_free: free(buf); msg_cinfo("%s.\n", ret ? "FAILED" : "done"); @@ -1489,13 +1489,13 @@ static int check_block_eraser(struct flashchip *flash, int k, int log) if (!eraser.block_erase && eraser.eraseblocks[0].count) { if (log) msg_cdbg("eraseblock layout is known, but matching " - "block erase function is not implemented. "); + "block erase function is not implemented. "); return 1; } if (eraser.block_erase && !eraser.eraseblocks[0].count) { if (log) msg_cdbg("block erase function found, but " - "eraseblock layout is not defined. "); + "eraseblock layout is not defined. "); return 1; } return 0; -- cgit v1.1