Skip to content

Commit

Permalink
microchip iocb: spelling cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
philljj committed Jan 6, 2025
1 parent eb079ee commit a2fede3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hal/tpm_io.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ int TPM2_IoCb(TPM2_CTX* ctx, INT32 isRead, UINT32 addr,
#elif defined(WOLFSSL_ESPIDF)
ret = TPM2_IoCb_Espressif_I2C(ctx, isRead, addr, buf, size, userCtx);
#elif defined(WOLFTPM_MICROCHIP_HARMONY)
/* Use MicrochipHarmony I2C */
/* Use Microchip Harmony I2C */
ret = TPM2_IoCb_MicrochipHarmony_I2C(ctx, isRead, addr, buf, size, userCtx);
#else
/* TODO: Add your platform here for HW I2C interface */
Expand Down
4 changes: 2 additions & 2 deletions hal/tpm_io_microchip.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
#include "definitions.h"

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

/* Wait for time_ms using Micochip Harmony SYS_TIME API. */
/* Wait for time_ms using Microchip Harmony SYS_TIME API. */
static void microchip_wait(uint32_t time_ms)
{
/* Microchip Harmony example from documentation.
Expand Down

0 comments on commit a2fede3

Please sign in to comment.