summaryrefslogtreecommitdiff
path: root/nuttx/arch/z16
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-04-25 09:56:07 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-04-25 09:56:07 -0600
commit4e1fee0db7447045b9d507a0846823d6af9da2ce (patch)
treeb6cfe4c3acb3b6e9759ae9aff97e75ed68509559 /nuttx/arch/z16
parent90a5a90d4538bbb614de94b71abdee54adb95626 (diff)
downloadnuttx-4e1fee0db7447045b9d507a0846823d6af9da2ce.tar.gz
nuttx-4e1fee0db7447045b9d507a0846823d6af9da2ce.tar.bz2
nuttx-4e1fee0db7447045b9d507a0846823d6af9da2ce.zip
16z: Reduce size of stacks
Diffstat (limited to 'nuttx/arch/z16')
-rw-r--r--nuttx/arch/z16/src/z16f/z16f_serial.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/nuttx/arch/z16/src/z16f/z16f_serial.c b/nuttx/arch/z16/src/z16f/z16f_serial.c
index 0b4468899..4f8642e48 100644
--- a/nuttx/arch/z16/src/z16f/z16f_serial.c
+++ b/nuttx/arch/z16/src/z16f/z16f_serial.c
@@ -60,7 +60,7 @@
#ifdef USE_SERIALDRIVER
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
/* System clock frequency value from ZDS target settings */
@@ -626,7 +626,7 @@ static void z16f_rxint(struct uart_dev_s *dev, bool enable)
* Name: z16f_rxavailable
*
* Description:
- * Return true if the receive fifo is not empty
+ * Return true if the receive FIFO is not empty
*
****************************************************************************/
@@ -688,7 +688,7 @@ static void z16f_txint(struct uart_dev_s *dev, bool enable)
* Name: z16f_txready
*
* Description:
- * Return true if the tranmsit fifo is not full
+ * Return true if the transmit FIFO is not full
*
****************************************************************************/
@@ -702,7 +702,7 @@ static bool z16f_txready(struct uart_dev_s *dev)
* Name: z16f_txempty
*
* Description:
- * Return true if the transmit fifo is empty
+ * Return true if the transmit FIFO is empty
*
****************************************************************************/
@@ -713,7 +713,7 @@ static bool z16f_txempty(struct uart_dev_s *dev)
}
/****************************************************************************
- * Public Funtions
+ * Public Functions
****************************************************************************/
/****************************************************************************
@@ -810,7 +810,7 @@ int up_putc(int ch)
#else /* USE_SERIALDRIVER */
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
#ifdef CONFIG_UART1_SERIAL_CONSOLE