summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Widawsky <benjamin.widawsky@intel.com>2013-09-10 15:34:54 -0700
committerBen Widawsky <benjamin.widawsky@intel.com>2013-09-10 22:14:28 -0700
commitb0bcb9ba6030069bb1fbb1180b8020d3bb19ccac (patch)
tree7f98e06f5f272ebbe7ef52062649f1875cd86a1e
parentb3dadedd2e899a8e3dd916aa8b0df6481e724d5a (diff)
intel_l3_parity: Fix indentation
Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
-rw-r--r--tools/intel_l3_parity.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/intel_l3_parity.c b/tools/intel_l3_parity.c
index ad027aca..970dcd67 100644
--- a/tools/intel_l3_parity.c
+++ b/tools/intel_l3_parity.c
@@ -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);
}
}
}