edid: Fix source indent.

Some lines in decode_edid have incorrect indent levels.

Change-Id: Icc9cb57ff8dd2e2056599b3dc733fe5ac4e41c16
Signed-off-by: Hung-Te Lin <hungte@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/193010
Reviewed-by: Gabe Black <gabeblack@chromium.org>
(cherry picked from commit 3211ac0a29a037c5414f9ed1736c8f7822ad116b)
Signed-off-by: Isaac Christensen <isaac.christensen@se-eng.com>
Reviewed-on: http://review.coreboot.org/6994
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
This commit is contained in:
Hung-Te Lin 2014-04-03 18:33:01 +08:00 committed by Isaac Christensen
parent 0e8e0991e2
commit fc0d244b39
1 changed files with 244 additions and 244 deletions

View File

@ -1264,11 +1264,11 @@ int decode_edid(unsigned char *edid, int size, struct edid *out)
for(i = 0; i < size; i += 128) for(i = 0; i < size; i += 128)
nonconformant_extension = parse_extension(out, &edid[i]); nonconformant_extension = parse_extension(out, &edid[i]);
/* /*
x = edid; * x = edid;
for (edid_lines /= 8; edid_lines > 1; edid_lines--) { * for (edid_lines /= 8; edid_lines > 1; edid_lines--) {
x += 128; * x += 128;
nonconformant_extension += parse_extension(x); * nonconformant_extension += parse_extension(x);
} * }
*/ */
if (claims_one_point_three) { if (claims_one_point_three) {