summaryrefslogtreecommitdiff
path: root/nuttx/arch/sh/src/m16c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/arch/sh/src/m16c')
-rw-r--r--nuttx/arch/sh/src/m16c/chip.h2
-rw-r--r--nuttx/arch/sh/src/m16c/m16c_copystate.c2
-rw-r--r--nuttx/arch/sh/src/m16c/m16c_head.S2
-rw-r--r--nuttx/arch/sh/src/m16c/m16c_initialstate.c2
-rw-r--r--nuttx/arch/sh/src/m16c/m16c_irq.c2
-rw-r--r--nuttx/arch/sh/src/m16c/m16c_lowputc.c2
-rw-r--r--nuttx/arch/sh/src/m16c/m16c_schedulesigaction.c2
-rw-r--r--nuttx/arch/sh/src/m16c/m16c_serial.c4
-rw-r--r--nuttx/arch/sh/src/m16c/m16c_sigdeliver.c2
-rw-r--r--nuttx/arch/sh/src/m16c/m16c_timer.h2
-rw-r--r--nuttx/arch/sh/src/m16c/m16c_timerisr.c2
-rw-r--r--nuttx/arch/sh/src/m16c/m16c_uart.h2
-rw-r--r--nuttx/arch/sh/src/m16c/m16c_vectors.S2
13 files changed, 14 insertions, 14 deletions
diff --git a/nuttx/arch/sh/src/m16c/chip.h b/nuttx/arch/sh/src/m16c/chip.h
index 83c0da2c9..cf0e196ab 100644
--- a/nuttx/arch/sh/src/m16c/chip.h
+++ b/nuttx/arch/sh/src/m16c/chip.h
@@ -46,7 +46,7 @@
#endif
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
/* FLG register bits */
diff --git a/nuttx/arch/sh/src/m16c/m16c_copystate.c b/nuttx/arch/sh/src/m16c/m16c_copystate.c
index f8dfc843f..2aa48d6c7 100644
--- a/nuttx/arch/sh/src/m16c/m16c_copystate.c
+++ b/nuttx/arch/sh/src/m16c/m16c_copystate.c
@@ -47,7 +47,7 @@
#include "up_internal.h"
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************
diff --git a/nuttx/arch/sh/src/m16c/m16c_head.S b/nuttx/arch/sh/src/m16c/m16c_head.S
index cd1a3aa7d..06f40d225 100644
--- a/nuttx/arch/sh/src/m16c/m16c_head.S
+++ b/nuttx/arch/sh/src/m16c/m16c_head.S
@@ -46,7 +46,7 @@
************************************************************************************/
/************************************************************************************
- * Macro Definitions
+ * Pre-processor Definitions
************************************************************************************/
/*****************************************************************************
diff --git a/nuttx/arch/sh/src/m16c/m16c_initialstate.c b/nuttx/arch/sh/src/m16c/m16c_initialstate.c
index ee22d5497..cc913fde6 100644
--- a/nuttx/arch/sh/src/m16c/m16c_initialstate.c
+++ b/nuttx/arch/sh/src/m16c/m16c_initialstate.c
@@ -49,7 +49,7 @@
#include "up_arch.h"
/****************************************************************************
- * Preprocessor Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************
diff --git a/nuttx/arch/sh/src/m16c/m16c_irq.c b/nuttx/arch/sh/src/m16c/m16c_irq.c
index 5c4645053..0f2821520 100644
--- a/nuttx/arch/sh/src/m16c/m16c_irq.c
+++ b/nuttx/arch/sh/src/m16c/m16c_irq.c
@@ -46,7 +46,7 @@
#include "up_internal.h"
/****************************************************************************
- * Private Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************
diff --git a/nuttx/arch/sh/src/m16c/m16c_lowputc.c b/nuttx/arch/sh/src/m16c/m16c_lowputc.c
index b88bc0baa..be9dd8e0e 100644
--- a/nuttx/arch/sh/src/m16c/m16c_lowputc.c
+++ b/nuttx/arch/sh/src/m16c/m16c_lowputc.c
@@ -50,7 +50,7 @@
#include "m16c_uart.h"
/**************************************************************************
- * Private Definitions
+ * Pre-processor Definitions
**************************************************************************/
/* Configuration **********************************************************/
diff --git a/nuttx/arch/sh/src/m16c/m16c_schedulesigaction.c b/nuttx/arch/sh/src/m16c/m16c_schedulesigaction.c
index fc4fd0b7b..adce23d37 100644
--- a/nuttx/arch/sh/src/m16c/m16c_schedulesigaction.c
+++ b/nuttx/arch/sh/src/m16c/m16c_schedulesigaction.c
@@ -52,7 +52,7 @@
#ifndef CONFIG_DISABLE_SIGNALS
/****************************************************************************
- * Private Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************
diff --git a/nuttx/arch/sh/src/m16c/m16c_serial.c b/nuttx/arch/sh/src/m16c/m16c_serial.c
index a3bd6c07e..69a33e626 100644
--- a/nuttx/arch/sh/src/m16c/m16c_serial.c
+++ b/nuttx/arch/sh/src/m16c/m16c_serial.c
@@ -65,7 +65,7 @@
#if defined(CONFIG_M16C_UART0) || defined(CONFIG_M16C_UART1) || defined(CONFIG_M16C_UART2)
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
/* Configuration **********************************************************/
@@ -235,7 +235,7 @@ elif defined(CONFIG_M16C_UART1)
# undef TTYS1_DEV /* No tty2 */
#endif
-/* Definitions for the enable field of the device structure */
+/* Pre-processor Definitions for the enable field of the device structure */
#define M16C_RXENABLED 0x01
#define M16C_TXENABLED 0x02
diff --git a/nuttx/arch/sh/src/m16c/m16c_sigdeliver.c b/nuttx/arch/sh/src/m16c/m16c_sigdeliver.c
index 9387c3075..817d3bc02 100644
--- a/nuttx/arch/sh/src/m16c/m16c_sigdeliver.c
+++ b/nuttx/arch/sh/src/m16c/m16c_sigdeliver.c
@@ -54,7 +54,7 @@
#ifndef CONFIG_DISABLE_SIGNALS
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************
diff --git a/nuttx/arch/sh/src/m16c/m16c_timer.h b/nuttx/arch/sh/src/m16c/m16c_timer.h
index a3d0b0377..9bfab51cf 100644
--- a/nuttx/arch/sh/src/m16c/m16c_timer.h
+++ b/nuttx/arch/sh/src/m16c/m16c_timer.h
@@ -43,7 +43,7 @@
#include <nuttx/config.h>
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
/* Register Bit Definitions *********************************************************/
diff --git a/nuttx/arch/sh/src/m16c/m16c_timerisr.c b/nuttx/arch/sh/src/m16c/m16c_timerisr.c
index 9b02099c4..5667042ac 100644
--- a/nuttx/arch/sh/src/m16c/m16c_timerisr.c
+++ b/nuttx/arch/sh/src/m16c/m16c_timerisr.c
@@ -54,7 +54,7 @@
#include "m16c_timer.h"
/****************************************************************************
- * Preprocessor Definitions
+ * Pre-processor Definitions
****************************************************************************/
/* Configuration */
diff --git a/nuttx/arch/sh/src/m16c/m16c_uart.h b/nuttx/arch/sh/src/m16c/m16c_uart.h
index 4996d97d3..c1ad1b5db 100644
--- a/nuttx/arch/sh/src/m16c/m16c_uart.h
+++ b/nuttx/arch/sh/src/m16c/m16c_uart.h
@@ -43,7 +43,7 @@
#include <nuttx/config.h>
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
/* UART Register Block Base Addresses ***********************************************/
diff --git a/nuttx/arch/sh/src/m16c/m16c_vectors.S b/nuttx/arch/sh/src/m16c/m16c_vectors.S
index f0f151fc3..b59f17986 100644
--- a/nuttx/arch/sh/src/m16c/m16c_vectors.S
+++ b/nuttx/arch/sh/src/m16c/m16c_vectors.S
@@ -46,7 +46,7 @@
************************************************************************************/
/************************************************************************************
- * Macro Definitions
+ * Pre-processor Definitions
************************************************************************************/
/* Select register bank 1, and pass the IRQ number to _m16c_commonvector */