From 7e4ab139d09f417705df2ab98638d3632ce8e657 Mon Sep 17 00:00:00 2001 From: Avi Weiss Date: Fri, 24 Apr 2026 15:49:19 +0200 Subject: [PATCH] bsp/arm/tms570: correct typos in sci.c --- bsps/arm/tms570/console/tms570-sci.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bsps/arm/tms570/console/tms570-sci.c b/bsps/arm/tms570/console/tms570-sci.c index d33d9c10d6..b3c751729e 100644 --- a/bsps/arm/tms570/console/tms570-sci.c +++ b/bsps/arm/tms570/console/tms570-sci.c @@ -80,7 +80,7 @@ void tms570_sci_initialize( tms570_sci_context *ctx ) uint32_t rx_pin = 1 << 1; uint32_t tx_pin = 1 << 2; - /* Resec SCI peripheral */ + /* Reset SCI peripheral */ ctx->regs->GCR0 = TMS570_SCI_GCR0_RESET * 0; ctx->regs->GCR0 = TMS570_SCI_GCR0_RESET * 1; @@ -206,7 +206,7 @@ static void tms570_sci_disable_interrupts( tms570_sci_context *ctx ) * * Check whether driver has put char in HW. * This information is read from the driver context not from a peripheral. - * TMS570 does not have write data buffer asociated with SCI + * TMS570 does not have write data buffer associated with SCI * so the return can be only 0 or 1. * * @param[in] ctx context of the driver