diff options
author | Vadim Bendebury <vbendeb@chromium.org> | 2016-07-07 11:15:47 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-07-13 23:57:45 +0200 |
commit | 1a98050f1a09a3d95f71f2851a15c0a6d2c4a62f (patch) | |
tree | 1eb3940e59b5bba3b6327450b8ec9022f66ac3d6 /src | |
parent | 690ac93aa00c7b197a6b5245acaa0d65d411e12e (diff) | |
download | coreboot-1a98050f1a09a3d95f71f2851a15c0a6d2c4a62f.tar.xz |
tpm2: remove unused buffer size definition
TPM2 structure definitions use pointers instead of buffers where
possible. One structure was left behind. Replace that buffer definition
with a pointer to be consistent.
BRANCH=none
BUG=chrome-os-partner:50645
TEST=compilation succeeds, the code using the changed structure in the
upcoming patches allows to successfully boot chrome OS on Kevin
Change-Id: Iea59943aa0ad6e42fcd479765a9ded0d7a1680d7
Signed-off-by: Martin Roth <martinroth@chromium.org>
Original-Commit-Id: 02b2909b1875ba65cd56cf8e3697a2b67ddaea07
Original-Change-Id: I9856ac516be13f5892ba8af0526708409a297033
Original-Signed-off-by: Vadim Bendebury <vbendeb@chromium.org>
Original-Reviewed-on: https://chromium-review.googlesource.com/358771
Original-Reviewed-by: Douglas Anderson <dianders@chromium.org>
Reviewed-on: https://review.coreboot.org/15609
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/tpm2_tlcl_structures.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/tpm2_tlcl_structures.h b/src/lib/tpm2_tlcl_structures.h index fad9c0d7bd..1bf3abc09e 100644 --- a/src/lib/tpm2_tlcl_structures.h +++ b/src/lib/tpm2_tlcl_structures.h @@ -198,7 +198,7 @@ typedef struct { typedef union { struct { uint16_t size; - uint8_t buffer[sizeof(TPMU_HA)]; + const uint8_t *buffer; } t; TPM2B b; } TPM2B_DIGEST; |