diff options
author | Miquel Raynal <miquel.raynal@bootlin.com> | 2018-05-15 11:57:02 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-05-25 08:12:40 -0400 |
commit | 52da18a378d92ed2bce5a33b9655d8cd4ba50a1f (patch) | |
tree | 6ab8c699da732e65f731df8a6923cd9139d68809 /include/tpm.h | |
parent | fded837fd996880fd051e0ee0dbeee344cd084d2 (diff) | |
download | u-boot-52da18a378d92ed2bce5a33b9655d8cd4ba50a1f.tar.gz |
tpm: fix spelling
Fix following checkpatch.pl issues in TPM-related code:
CHECK: '<x>' may be misspelled - perhaps '<y>'?
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/tpm.h')
-rw-r--r-- | include/tpm.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/tpm.h b/include/tpm.h index a89d689937..23d925ecaa 100644 --- a/include/tpm.h +++ b/include/tpm.h @@ -508,7 +508,7 @@ u32 tpm_tsc_physical_presence(u16 presence); * Issue a TPM_ReadPubek command. * * @param data output buffer for the public endorsement key - * @param count size of ouput buffer + * @param count size of output buffer * @return return code of the operation */ u32 tpm_read_pubek(void *data, size_t count); @@ -550,13 +550,13 @@ u32 tpm_physical_set_deactivated(u8 state); * @param sub_cap further definition of capability, which is * limited to be 4-byte wide * @param cap output buffer for capability information - * @param count size of ouput buffer + * @param count size of output buffer * @return return code of the operation */ u32 tpm_get_capability(u32 cap_area, u32 sub_cap, void *cap, size_t count); /** - * Issue a TPM_FlushSpecific command for a AUTH ressource. + * Issue a TPM_FlushSpecific command for a AUTH resource. * * @param auth_handle handle of the auth session * @return return code of the operation @@ -564,7 +564,7 @@ u32 tpm_get_capability(u32 cap_area, u32 sub_cap, void *cap, size_t count); u32 tpm_terminate_auth_session(u32 auth_handle); /** - * Issue a TPM_OIAP command to setup an object independant authorization + * Issue a TPM_OIAP command to setup an object independent authorization * session. * Information about the session is stored internally. * If there was already an OIAP session active it is terminated and a new |