Revert "Temporarily add padding to nested struct to ensure word alignment."

This reverts commit 821d29792def7d472b92464d56dde6d733af7f30.

BRANCH=none
BUG=chrome-os-partner:43025,chrome-os-partner:47524,chrome-os-partner:49770
TEST=compiles, CR50 tests pass

Change-Id: Ibde197d3dd2b4ca9a0cdde51590a74bf0fd73b27
Signed-off-by: nagendra modadugu <ngm@google.com>
Reviewed-on: https://chromium-review.googlesource.com/326181
Commit-Ready: Nagendra Modadugu <ngm@google.com>
Tested-by: Nagendra Modadugu <ngm@google.com>
Reviewed-by: Vadim Bendebury <vbendeb@chromium.org>
diff --git a/tpm_types.h b/tpm_types.h
index 56af630..eec5e48 100644
--- a/tpm_types.h
+++ b/tpm_types.h
@@ -1265,13 +1265,10 @@
 } TPM2B_ECC_PARAMETER;
 
 // Table 162  Definition of TPMS_ECC_POINT Structure
-// TODO(ngm): To be fixed in the generator, crbug.com/49770.
 typedef struct {
-  UINT16 unused_pad1;
   TPM2B_ECC_PARAMETER  x;
-  UINT16 unused_pad2;
   TPM2B_ECC_PARAMETER  y;
-} TPMS_ECC_POINT __attribute__ ((aligned (4)));
+} TPMS_ECC_POINT;
 
 // Table   163    Definition of TPM2B_ECC_POINT Structure
 typedef union {