Skip to content

Commit a2fede3

Browse files
committed
microchip iocb: spelling cleanup.
1 parent eb079ee commit a2fede3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

hal/tpm_io.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ int TPM2_IoCb(TPM2_CTX* ctx, INT32 isRead, UINT32 addr,
149149
#elif defined(WOLFSSL_ESPIDF)
150150
ret = TPM2_IoCb_Espressif_I2C(ctx, isRead, addr, buf, size, userCtx);
151151
#elif defined(WOLFTPM_MICROCHIP_HARMONY)
152-
/* Use MicrochipHarmony I2C */
152+
/* Use Microchip Harmony I2C */
153153
ret = TPM2_IoCb_MicrochipHarmony_I2C(ctx, isRead, addr, buf, size, userCtx);
154154
#else
155155
/* TODO: Add your platform here for HW I2C interface */

hal/tpm_io_microchip.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
#include "definitions.h"
5454

5555
#ifdef WOLFTPM_I2C /* Microchip Harmony Hal I2C */
56-
/* We are using the I2C bitbang library. */
56+
/* We are using the I2C bit-bang library. */
5757
#include <i2cbb/i2c_bb.h>
5858
/* Use sys_time to implement delay. */
5959
#include "system/time/sys_time.h"
@@ -73,7 +73,7 @@
7373
return;
7474
}
7575

76-
/* Wait for time_ms using Micochip Harmony SYS_TIME API. */
76+
/* Wait for time_ms using Microchip Harmony SYS_TIME API. */
7777
static void microchip_wait(uint32_t time_ms)
7878
{
7979
/* Microchip Harmony example from documentation.

0 commit comments

Comments
 (0)