intel_l3_parity: Fix indentation

Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
This commit is contained in:
Ben Widawsky 2013-09-10 15:34:54 -07:00
parent 64cfe4eefe
commit 318c0b22d7

View File

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