]> git.sur5r.net Git - u-boot/commitdiff
tpm: fix spelling
authorMiquel Raynal <miquel.raynal@bootlin.com>
Tue, 15 May 2018 09:57:02 +0000 (11:57 +0200)
committerTom Rini <trini@konsulko.com>
Fri, 25 May 2018 12:12:40 +0000 (08:12 -0400)
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>
include/tpm.h
lib/tpm.c

index a89d6899378107f7cb533f8b717256e545e019d3..23d925ecaaca6079e4f7fc29d896676288375bde 100644 (file)
@@ -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
index 931b45301d6e9ffde82b29beb4eba7e223a60ca5..e743935fd31bc1b8f5f46894192013f0c0580c03 100644 (file)
--- a/lib/tpm.c
+++ b/lib/tpm.c
@@ -825,7 +825,7 @@ u32 tpm_terminate_auth_session(u32 auth_handle)
                0x00, 0x00, 0x00, 0x00, /* parameter size */
                0x00, 0x00, 0x00, 0xba, /* TPM_COMMAND_CODE */
                0x00, 0x00, 0x00, 0x00, /* TPM_HANDLE */
-               0x00, 0x00, 0x00, 0x02, /* TPM_RESSOURCE_TYPE */
+               0x00, 0x00, 0x00, 0x02, /* TPM_RESOURCE_TYPE */
        };
        const size_t req_handle_offset = TPM_REQUEST_HEADER_LENGTH;
        u8 request[COMMAND_BUFFER_SIZE];