src/lib: Fix brace positions
Fix the following errors detected by checkpatch.pl:
ERROR: open brace '{' following function declarations go on the next
line
ERROR: that open brace { should be on the previous line
ERROR: open brace '{' following struct go on the same line
ERROR: else should follow close brace '}'
TEST=Build and run on Galileo Gen2
Change-Id: I971ada9ba9ba7ce5d8029323710fee1a6166570b
Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com>
Reviewed-on: https://review.coreboot.org/18759
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
			
			
This commit is contained in:
		| @@ -1452,8 +1452,8 @@ int decode_edid(unsigned char *edid, int size, struct edid *out) | ||||
| 	for (i = 0; i < 4; i++) { | ||||
| 		c.has_valid_detailed_blocks &= detailed_block( | ||||
| 				out, edid + 0x36 + i * 18, 0, &c); | ||||
| 		if (i == 0 && c.has_preferred_timing && !c.did_detailed_timing) | ||||
| 		{ | ||||
| 		if (i == 0 && c.has_preferred_timing | ||||
| 			&& !c.did_detailed_timing) { | ||||
| 			/* not really accurate... */ | ||||
| 			c.has_preferred_timing = 0; | ||||
| 		} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user