summaryrefslogtreecommitdiff
path: root/src/northbridge/intel/i945/debug.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2016-09-17 19:12:27 +0200
committerPatrick Georgi <pgeorgi@google.com>2016-09-20 17:44:51 +0200
commit0a15fe929982677bb58f4ae9c4552037f445bddb (patch)
tree837f1596f22c7a65c8c0312206eec13464abdc37 /src/northbridge/intel/i945/debug.c
parent1d8daa66ee1cf8002aa94a77fe5c8eae95ac351c (diff)
downloadcoreboot-0a15fe929982677bb58f4ae9c4552037f445bddb.tar.xz
northbridge/intel/i945: Add space around operators
Change-Id: I24505af163544a03e3eab72c24f25fcdc4b1b16c Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/16624 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/northbridge/intel/i945/debug.c')
-rw-r--r--src/northbridge/intel/i945/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/intel/i945/debug.c b/src/northbridge/intel/i945/debug.c
index 946c984814..fa00df8eea 100644
--- a/src/northbridge/intel/i945/debug.c
+++ b/src/northbridge/intel/i945/debug.c
@@ -105,7 +105,7 @@ 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);
}