public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] NetStar: make crcit utility more readable.
@ 2009-12-30 17:22 Ladislav Michl
  2010-01-26 22:02 ` Paulraj, Sandeep
  0 siblings, 1 reply; 2+ messages in thread
From: Ladislav Michl @ 2009-12-30 17:22 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Ladislav Michl <ladis@linux-mips.org>

---
 board/netstar/crcit.c |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/board/netstar/crcit.c b/board/netstar/crcit.c
index e0cea9b..0eef41a 100644
--- a/board/netstar/crcit.c
+++ b/board/netstar/crcit.c
@@ -56,13 +56,14 @@ static int do_crc(char *path, unsigned version)
 		fprintf(stderr, "File too large\n");
 		return EXIT_FAILURE;
 	}
-	size = (size + 3) & ~3;	/* round up to 4 bytes */
-	data[0] = size + 4;	/* add size of version field */
+	size  = (size + 3) & ~3;	/* round up to 4 bytes */
+	size += 4;			/* add size of version field */
+	data[0] = size;
 	data[1] = version;
-	data[2 + (size >> 2)] = crc32(0, (unsigned char *)(data + 1), data[0]);
+	data[size/4 + 1] = crc32(0, (unsigned char *)(data + 1), size);
 	close(fd);
 
-	if (write(STDOUT_FILENO, data, size + 3*4) == -1) {
+	if (write(STDOUT_FILENO, data, size + 4 /*size*/ + 4 /*crc*/) == -1) {
 		perror("Error writing file");
 		return EXIT_FAILURE;
 	}
-- 
1.5.3.8

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [U-Boot] [PATCH] NetStar: make crcit utility more readable.
  2009-12-30 17:22 [U-Boot] [PATCH] NetStar: make crcit utility more readable Ladislav Michl
@ 2010-01-26 22:02 ` Paulraj, Sandeep
  0 siblings, 0 replies; 2+ messages in thread
From: Paulraj, Sandeep @ 2010-01-26 22:02 UTC (permalink / raw)
  To: u-boot



> Subject: [PATCH] NetStar: make crcit utility more readable.
> 
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> 
> ---
>  board/netstar/crcit.c |    9 +++++----
>  1 files changed, 5 insertions(+), 4 deletions(-)
> 

Pushed to u-boot-ti.

Again , since there is no patch description, I copied the patch header.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-01-26 22:02 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-30 17:22 [U-Boot] [PATCH] NetStar: make crcit utility more readable Ladislav Michl
2010-01-26 22:02 ` Paulraj, Sandeep

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox