[coreboot-gerrit] New patch to review for coreboot: northbridge/intel/e7501: Add space around operators

HAOUAS Elyes (ehaouas@noos.fr) gerrit at coreboot.org
Sat Sep 17 21:24:05 CEST 2016


HAOUAS Elyes (ehaouas at noos.fr) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/16633

-gerrit

commit 712ad700354d43dc107d5b93c779e21e48f35aee
Author: Elyes HAOUAS <ehaouas at noos.fr>
Date:   Sat Sep 17 21:20:51 2016 +0200

    northbridge/intel/e7501: Add space around operators
    
    Change-Id: I53aa17076135e55665f2f7c6ede217388fc50cca
    Signed-off-by: Elyes HAOUAS <ehaouas at noos.fr>
---
 src/northbridge/intel/e7501/debug.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/northbridge/intel/e7501/debug.c b/src/northbridge/intel/e7501/debug.c
index d48a089..9d79c9b 100644
--- a/src/northbridge/intel/e7501/debug.c
+++ b/src/northbridge/intel/e7501/debug.c
@@ -148,7 +148,7 @@ static inline void dump_io_resources(unsigned port)
 {
 	int i;
 	printk(BIOS_DEBUG, "%04x:\n", port);
-	for (i=0;i<256;i++) {
+	for (i = 0; i < 256; i++) {
 		uint8_t val;
 		if ((i & 0x0f) == 0)
 			printk(BIOS_DEBUG, "%02x:", i);
@@ -165,7 +165,7 @@ static inline void dump_mem(unsigned start, unsigned end)
 {
 	unsigned i;
 	printk(BIOS_DEBUG, "dump_mem:");
-	for (i=start;i<end;i++) {
+	for (i = start; i < end; i++) {
 		if ((i & 0xf)==0)
 			printk(BIOS_DEBUG, "\n%08x:", i);
 		printk(BIOS_DEBUG, " %02x", (unsigned char)*((unsigned char *)i));



More information about the coreboot-gerrit mailing list