From 7340217262759c3daab41466138ba7d40a8f13d5 Mon Sep 17 00:00:00 2001 From: Lee Leahy Date: Fri, 10 Mar 2017 15:23:24 -0800 Subject: 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 Reviewed-on: https://review.coreboot.org/18758 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth --- src/lib/tpm2_tlcl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/lib/tpm2_tlcl.c') diff --git a/src/lib/tpm2_tlcl.c b/src/lib/tpm2_tlcl.c index 86cc74d425..967612ad20 100644 --- a/src/lib/tpm2_tlcl.c +++ b/src/lib/tpm2_tlcl.c @@ -347,7 +347,8 @@ uint32_t tlcl_define_space(uint32_t space_index, size_t space_size) * value has been extended from default. */ nvds_cmd.publicInfo.authPolicy.t.buffer = pcr0_unchanged_policy; - nvds_cmd.publicInfo.authPolicy.t.size = sizeof(pcr0_unchanged_policy); + nvds_cmd.publicInfo.authPolicy.t.size = + sizeof(pcr0_unchanged_policy); } else { nvds_cmd.publicInfo.attributes = default_space_attributes; } -- cgit v1.2.3