[coreboot-gerrit] Patch set updated for coreboot: 5eecc79 lib/hexdump.c: Indent with tabs instead of spaces and remove empty lines

Ronald G. Minnich (rminnich@gmail.com) gerrit at coreboot.org
Mon Dec 30 16:38:32 CET 2013


Ronald G. Minnich (rminnich at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/4576

-gerrit

commit 5eecc7910eb05ea659167d5c9cd0cc86135a71c8
Author: Paul Menzel <paulepanter at users.sourceforge.net>
Date:   Fri Dec 27 14:43:44 2013 +0100

    lib/hexdump.c: Indent with tabs instead of spaces and remove empty lines
    
    Change-Id: I874f178e50d7558d3299026aec2771ad45f88d8e
    Signed-off-by: Paul Menzel <paulepanter at users.sourceforge.net>
---
 src/lib/hexdump.c | 64 +++++++++++++++++++++++++++----------------------------
 1 file changed, 31 insertions(+), 33 deletions(-)

diff --git a/src/lib/hexdump.c b/src/lib/hexdump.c
index 20babe4..98d356f 100644
--- a/src/lib/hexdump.c
+++ b/src/lib/hexdump.c
@@ -28,38 +28,36 @@ static int isprint(int c)
 	return (c >= 32 && c <= 126);
 }
 
-void hexdump(void* memory, size_t length)
+void hexdump(void *memory, size_t length)
 {
-        int i;
-        uint8_t *m;
-        int all_zero = 0;
-
-        m = (uint8_t *)memory;
-
-        for (i = 0; i < length; i += 16) {
-                int j;
-
-                all_zero++;
-                for (j = 0; j < 16; j++) {
-                        if(m[i+j] != 0) {
-                                all_zero = 0;
-                                break;
-                        }
-                }
-
-                if (all_zero < 2) {
-                        printk(BIOS_DEBUG, "%p:", memory + i);
-                        for (j = 0; j < 16; j++)
-                                printk(BIOS_DEBUG, " %02x", m[i+j]);
-                        printk(BIOS_DEBUG, "  ");
-                        for (j = 0; j < 16; j++)
-                                printk(BIOS_DEBUG, "%c",
-					isprint(m[i+j]) ? m[i+j] : '.');
-                        printk(BIOS_DEBUG, "\n");
-                } else if (all_zero == 2) {
-                        printk(BIOS_DEBUG, "...\n");
-                }
-        }
+	int i;
+	uint8_t *m;
+	int all_zero = 0;
+
+	m = (uint8_t *) memory;
+
+	for (i = 0; i < length; i += 16) {
+		int j;
+
+		all_zero++;
+		for (j = 0; j < 16; j++) {
+			if (m[i + j] != 0) {
+				all_zero = 0;
+				break;
+			}
+		}
+
+		if (all_zero < 2) {
+			printk(BIOS_DEBUG, "%p:", memory + i);
+			for (j = 0; j < 16; j++)
+				printk(BIOS_DEBUG, " %02x", m[i + j]);
+			printk(BIOS_DEBUG, "  ");
+			for (j = 0; j < 16; j++)
+				printk(BIOS_DEBUG, "%c",
+				       isprint(m[i + j]) ? m[i + j] : '.');
+			printk(BIOS_DEBUG, "\n");
+		} else if (all_zero == 2) {
+			printk(BIOS_DEBUG, "...\n");
+		}
+	}
 }
-
-



More information about the coreboot-gerrit mailing list