summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/kinetis/kinetis_serial.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/arch/arm/src/kinetis/kinetis_serial.c')
-rw-r--r--nuttx/arch/arm/src/kinetis/kinetis_serial.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/nuttx/arch/arm/src/kinetis/kinetis_serial.c b/nuttx/arch/arm/src/kinetis/kinetis_serial.c
index f176f5fa0..5bce5060f 100644
--- a/nuttx/arch/arm/src/kinetis/kinetis_serial.c
+++ b/nuttx/arch/arm/src/kinetis/kinetis_serial.c
@@ -900,8 +900,8 @@ static int up_interrupts(int irq, void *context)
if (count > 0)
#else
/* Check if the receive data register is full (RDRF). NOTE: If
- * FIFOS are enabled, this does not mean that the the FIFO is full,
- * rather, it means that the the number of bytes in the RX FIFO has
+ * FIFOS are enabled, this does not mean that the FIFO is full,
+ * rather, it means that the number of bytes in the RX FIFO has
* exceeded the watermark setting. There may actually be RX data
* available!
*
@@ -929,8 +929,8 @@ static int up_interrupts(int irq, void *context)
# error "Missing logic"
#else
/* Check if the transmit data register is "empty." NOTE: If FIFOS
- * are enabled, this does not mean that the the FIFO is empty, rather,
- * it means that the the number of bytes in the TX FIFO is below the
+ * are enabled, this does not mean that the FIFO is empty, rather,
+ * it means that the number of bytes in the TX FIFO is below the
* watermark setting. There could actually be space for additional TX
* data.
*
@@ -1090,8 +1090,8 @@ static bool up_rxavailable(struct uart_dev_s *dev)
return count > 0;
#else
/* Return true if the receive data register is full (RDRF). NOTE: If
- * FIFOS are enabled, this does not mean that the the FIFO is full,
- * rather, it means that the the number of bytes in the RX FIFO has
+ * FIFOS are enabled, this does not mean that the FIFO is full,
+ * rather, it means that the number of bytes in the RX FIFO has
* exceeded the watermark setting. There may actually be RX data
* available!
*/
@@ -1175,8 +1175,8 @@ static bool up_txready(struct uart_dev_s *dev)
# error "Missing logic"
#else
/* Return true if the transmit data register is "empty." NOTE: If
- * FIFOS are enabled, this does not mean that the the FIFO is empty,
- * rather, it means that the the number of bytes in the TX FIFO is
+ * FIFOS are enabled, this does not mean that the FIFO is empty,
+ * rather, it means that the number of bytes in the TX FIFO is
* below the watermark setting. There may actually be space for
* additional TX data.
*/