src/lib: Wrap lines at 80 columns
Fix the following warning detected by checkpatch.pl: WARNING: line over 80 characters TEST=Build and run on Galileo Gen2 Change-Id: I5fa3f8e950e2f0c60bd0e8f030342dc8c0469299 Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com> Reviewed-on: https://review.coreboot.org/18758 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
@ -166,7 +166,8 @@ static int imdr_create_empty(struct imdr *imdr, size_t root_size,
|
||||
if (root_size < (sizeof(*rp) + sizeof(*r)))
|
||||
return -1;
|
||||
|
||||
/* For simplicity don't allow sizes or alignments to exceed LIMIT_ALIGN. */
|
||||
/* For simplicity don't allow sizes or alignments to exceed LIMIT_ALIGN.
|
||||
*/
|
||||
if (root_size > LIMIT_ALIGN || entry_align > LIMIT_ALIGN)
|
||||
return -1;
|
||||
|
||||
|
Reference in New Issue
Block a user