intel_l3_parity: Fix indentation
authorBen Widawsky <benjamin.widawsky@intel.com>
Tue, 10 Sep 2013 22:34:54 +0000 (15:34 -0700)
committerBen Widawsky <benjamin.widawsky@intel.com>
Fri, 20 Sep 2013 16:42:07 +0000 (09:42 -0700)
Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
tools/intel_l3_parity.c

index ad027ac..970dcd6 100644 (file)
@@ -58,12 +58,12 @@ static void dumpit(void)
                for (j = 0; j < NUM_SUBBANKS; j++) {
                        struct l3_log_register *reg = &l3log[i][j];
 
-               if (reg->row0_enable)
-                       printf("Row %d, Bank %d, Subbank %d is disabled\n",
-                              reg->row0, i, j);
-               if (reg->row1_enable)
-                       printf("Row %d, Bank %d, Subbank %d is disabled\n",
-                              reg->row1, i, j);
+                       if (reg->row0_enable)
+                               printf("Row %d, Bank %d, Subbank %d is disabled\n",
+                                      reg->row0, i, j);
+                       if (reg->row1_enable)
+                               printf("Row %d, Bank %d, Subbank %d is disabled\n",
+                                      reg->row1, i, j);
                }
        }
 }