summaryrefslogtreecommitdiff
path: root/nuttx/arch/sh/src
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/arch/sh/src')
-rw-r--r--nuttx/arch/sh/src/common/up_allocateheap.c2
-rw-r--r--nuttx/arch/sh/src/common/up_arch.h2
-rw-r--r--nuttx/arch/sh/src/common/up_assert.c2
-rw-r--r--nuttx/arch/sh/src/common/up_exit.c2
-rw-r--r--nuttx/arch/sh/src/common/up_idle.c2
-rw-r--r--nuttx/arch/sh/src/common/up_initialize.c2
-rw-r--r--nuttx/arch/sh/src/common/up_internal.h2
-rw-r--r--nuttx/arch/sh/src/common/up_lowputs.c2
-rw-r--r--nuttx/arch/sh/src/common/up_mdelay.c2
-rw-r--r--nuttx/arch/sh/src/common/up_puts.c2
-rw-r--r--nuttx/arch/sh/src/common/up_releasepending.c2
-rw-r--r--nuttx/arch/sh/src/common/up_reprioritizertr.c2
-rw-r--r--nuttx/arch/sh/src/common/up_udelay.c2
-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
-rw-r--r--nuttx/arch/sh/src/sh1/chip.h2
-rw-r--r--nuttx/arch/sh/src/sh1/sh1_703x.h2
-rw-r--r--nuttx/arch/sh/src/sh1/sh1_copystate.c2
-rw-r--r--nuttx/arch/sh/src/sh1/sh1_head.S2
-rw-r--r--nuttx/arch/sh/src/sh1/sh1_initialstate.c2
-rw-r--r--nuttx/arch/sh/src/sh1/sh1_irq.c2
-rw-r--r--nuttx/arch/sh/src/sh1/sh1_lowputc.c2
-rw-r--r--nuttx/arch/sh/src/sh1/sh1_saveusercontext.S2
-rw-r--r--nuttx/arch/sh/src/sh1/sh1_schedulesigaction.c2
-rw-r--r--nuttx/arch/sh/src/sh1/sh1_serial.c2
-rw-r--r--nuttx/arch/sh/src/sh1/sh1_sigdeliver.c2
-rw-r--r--nuttx/arch/sh/src/sh1/sh1_timerisr.c2
-rw-r--r--nuttx/arch/sh/src/sh1/sh1_vector.S2
39 files changed, 40 insertions, 40 deletions
diff --git a/nuttx/arch/sh/src/common/up_allocateheap.c b/nuttx/arch/sh/src/common/up_allocateheap.c
index 787704ef8..b1a2c818b 100644
--- a/nuttx/arch/sh/src/common/up_allocateheap.c
+++ b/nuttx/arch/sh/src/common/up_allocateheap.c
@@ -49,7 +49,7 @@
#include "up_internal.h"
/****************************************************************************
- * Private Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************
diff --git a/nuttx/arch/sh/src/common/up_arch.h b/nuttx/arch/sh/src/common/up_arch.h
index c23d9dff1..b624da189 100644
--- a/nuttx/arch/sh/src/common/up_arch.h
+++ b/nuttx/arch/sh/src/common/up_arch.h
@@ -49,7 +49,7 @@
#include "chip.h"
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************
diff --git a/nuttx/arch/sh/src/common/up_assert.c b/nuttx/arch/sh/src/common/up_assert.c
index 127f79d5e..9568b33ae 100644
--- a/nuttx/arch/sh/src/common/up_assert.c
+++ b/nuttx/arch/sh/src/common/up_assert.c
@@ -67,7 +67,7 @@
#include "up_internal.h"
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
/* USB trace dumping */
diff --git a/nuttx/arch/sh/src/common/up_exit.c b/nuttx/arch/sh/src/common/up_exit.c
index 6fcd8dd80..d923724ae 100644
--- a/nuttx/arch/sh/src/common/up_exit.c
+++ b/nuttx/arch/sh/src/common/up_exit.c
@@ -54,7 +54,7 @@
#include "up_internal.h"
/****************************************************************************
- * Private Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************
diff --git a/nuttx/arch/sh/src/common/up_idle.c b/nuttx/arch/sh/src/common/up_idle.c
index 71c4ff1d1..033372234 100644
--- a/nuttx/arch/sh/src/common/up_idle.c
+++ b/nuttx/arch/sh/src/common/up_idle.c
@@ -43,7 +43,7 @@
#include "up_internal.h"
/****************************************************************************
- * Private Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************
diff --git a/nuttx/arch/sh/src/common/up_initialize.c b/nuttx/arch/sh/src/common/up_initialize.c
index b6470c335..fc99a1f28 100644
--- a/nuttx/arch/sh/src/common/up_initialize.c
+++ b/nuttx/arch/sh/src/common/up_initialize.c
@@ -51,7 +51,7 @@
#include "up_internal.h"
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
/* Define to enable timing loop calibration */
diff --git a/nuttx/arch/sh/src/common/up_internal.h b/nuttx/arch/sh/src/common/up_internal.h
index e27c3670a..220266371 100644
--- a/nuttx/arch/sh/src/common/up_internal.h
+++ b/nuttx/arch/sh/src/common/up_internal.h
@@ -48,7 +48,7 @@
#endif
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
/* Bring-up debug configurations. These are here (vs defconfig)
diff --git a/nuttx/arch/sh/src/common/up_lowputs.c b/nuttx/arch/sh/src/common/up_lowputs.c
index 627b22e0c..592ea8177 100644
--- a/nuttx/arch/sh/src/common/up_lowputs.c
+++ b/nuttx/arch/sh/src/common/up_lowputs.c
@@ -42,7 +42,7 @@
#include "up_internal.h"
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************
diff --git a/nuttx/arch/sh/src/common/up_mdelay.c b/nuttx/arch/sh/src/common/up_mdelay.c
index 8ea915886..deea95e21 100644
--- a/nuttx/arch/sh/src/common/up_mdelay.c
+++ b/nuttx/arch/sh/src/common/up_mdelay.c
@@ -41,7 +41,7 @@
#include <nuttx/arch.h>
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************
diff --git a/nuttx/arch/sh/src/common/up_puts.c b/nuttx/arch/sh/src/common/up_puts.c
index 968e216d2..24dccecbe 100644
--- a/nuttx/arch/sh/src/common/up_puts.c
+++ b/nuttx/arch/sh/src/common/up_puts.c
@@ -43,7 +43,7 @@
#include "up_internal.h"
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************
diff --git a/nuttx/arch/sh/src/common/up_releasepending.c b/nuttx/arch/sh/src/common/up_releasepending.c
index d76ca4a11..0f1279bb8 100644
--- a/nuttx/arch/sh/src/common/up_releasepending.c
+++ b/nuttx/arch/sh/src/common/up_releasepending.c
@@ -48,7 +48,7 @@
#include "up_internal.h"
/****************************************************************************
- * Private Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************
diff --git a/nuttx/arch/sh/src/common/up_reprioritizertr.c b/nuttx/arch/sh/src/common/up_reprioritizertr.c
index b509202a3..50c5528dd 100644
--- a/nuttx/arch/sh/src/common/up_reprioritizertr.c
+++ b/nuttx/arch/sh/src/common/up_reprioritizertr.c
@@ -50,7 +50,7 @@
#include "up_internal.h"
/****************************************************************************
- * Private Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************
diff --git a/nuttx/arch/sh/src/common/up_udelay.c b/nuttx/arch/sh/src/common/up_udelay.c
index 4ec4b0948..16aad765d 100644
--- a/nuttx/arch/sh/src/common/up_udelay.c
+++ b/nuttx/arch/sh/src/common/up_udelay.c
@@ -42,7 +42,7 @@
#include <nuttx/arch.h>
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
#define CONFIG_BOARD_LOOPSPER100USEC ((CONFIG_BOARD_LOOPSPERMSEC+5)/10)
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 */
diff --git a/nuttx/arch/sh/src/sh1/chip.h b/nuttx/arch/sh/src/sh1/chip.h
index 331c1b055..490b20973 100644
--- a/nuttx/arch/sh/src/sh1/chip.h
+++ b/nuttx/arch/sh/src/sh1/chip.h
@@ -48,7 +48,7 @@
#endif
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
/************************************************************************************
diff --git a/nuttx/arch/sh/src/sh1/sh1_703x.h b/nuttx/arch/sh/src/sh1/sh1_703x.h
index 92fcd92bf..87f2c1bcd 100644
--- a/nuttx/arch/sh/src/sh1/sh1_703x.h
+++ b/nuttx/arch/sh/src/sh1/sh1_703x.h
@@ -43,7 +43,7 @@
#include <nuttx/config.h>
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
/* Memory-mapped register addresses *************************************************/
diff --git a/nuttx/arch/sh/src/sh1/sh1_copystate.c b/nuttx/arch/sh/src/sh1/sh1_copystate.c
index 873088bee..57fa2d463 100644
--- a/nuttx/arch/sh/src/sh1/sh1_copystate.c
+++ b/nuttx/arch/sh/src/sh1/sh1_copystate.c
@@ -45,7 +45,7 @@
#include "up_internal.h"
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************
diff --git a/nuttx/arch/sh/src/sh1/sh1_head.S b/nuttx/arch/sh/src/sh1/sh1_head.S
index 3654d0c60..f0f70de1f 100644
--- a/nuttx/arch/sh/src/sh1/sh1_head.S
+++ b/nuttx/arch/sh/src/sh1/sh1_head.S
@@ -46,7 +46,7 @@
#include "up_arch.h"
/*****************************************************************************
- * Definitions
+ * Pre-processor Definitions
*****************************************************************************/
/* This file holds the NuttX start logic that runs when the SH-1/US7032EVB1
diff --git a/nuttx/arch/sh/src/sh1/sh1_initialstate.c b/nuttx/arch/sh/src/sh1/sh1_initialstate.c
index 0f63c0afb..984829a37 100644
--- a/nuttx/arch/sh/src/sh1/sh1_initialstate.c
+++ b/nuttx/arch/sh/src/sh1/sh1_initialstate.c
@@ -45,7 +45,7 @@
#include "up_arch.h"
/****************************************************************************
- * Private Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************
diff --git a/nuttx/arch/sh/src/sh1/sh1_irq.c b/nuttx/arch/sh/src/sh1/sh1_irq.c
index e8543dd4c..ddbc69701 100644
--- a/nuttx/arch/sh/src/sh1/sh1_irq.c
+++ b/nuttx/arch/sh/src/sh1/sh1_irq.c
@@ -50,7 +50,7 @@
#include "chip.h"
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************
diff --git a/nuttx/arch/sh/src/sh1/sh1_lowputc.c b/nuttx/arch/sh/src/sh1/sh1_lowputc.c
index ed9cbb8e2..eee753ed1 100644
--- a/nuttx/arch/sh/src/sh1/sh1_lowputc.c
+++ b/nuttx/arch/sh/src/sh1/sh1_lowputc.c
@@ -49,7 +49,7 @@
#include "up_internal.h"
/**************************************************************************
- * Private Definitions
+ * Pre-processor Definitions
**************************************************************************/
/* Configuration **********************************************************/
diff --git a/nuttx/arch/sh/src/sh1/sh1_saveusercontext.S b/nuttx/arch/sh/src/sh1/sh1_saveusercontext.S
index a1b6bfff9..00cb8a677 100644
--- a/nuttx/arch/sh/src/sh1/sh1_saveusercontext.S
+++ b/nuttx/arch/sh/src/sh1/sh1_saveusercontext.S
@@ -41,7 +41,7 @@
#include "up_internal.h"
/**************************************************************************
- * Private Definitions
+ * Pre-processor Definitions
**************************************************************************/
/**************************************************************************
diff --git a/nuttx/arch/sh/src/sh1/sh1_schedulesigaction.c b/nuttx/arch/sh/src/sh1/sh1_schedulesigaction.c
index 22649b71a..38fe1e361 100644
--- a/nuttx/arch/sh/src/sh1/sh1_schedulesigaction.c
+++ b/nuttx/arch/sh/src/sh1/sh1_schedulesigaction.c
@@ -52,7 +52,7 @@
#ifndef CONFIG_DISABLE_SIGNALS
/****************************************************************************
- * Private Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************
diff --git a/nuttx/arch/sh/src/sh1/sh1_serial.c b/nuttx/arch/sh/src/sh1/sh1_serial.c
index 3d24e8556..dba82fe61 100644
--- a/nuttx/arch/sh/src/sh1/sh1_serial.c
+++ b/nuttx/arch/sh/src/sh1/sh1_serial.c
@@ -58,7 +58,7 @@
#include "up_internal.h"
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
/* Some sanity checks *******************************************************/
diff --git a/nuttx/arch/sh/src/sh1/sh1_sigdeliver.c b/nuttx/arch/sh/src/sh1/sh1_sigdeliver.c
index b611ffcf7..c395d49c6 100644
--- a/nuttx/arch/sh/src/sh1/sh1_sigdeliver.c
+++ b/nuttx/arch/sh/src/sh1/sh1_sigdeliver.c
@@ -54,7 +54,7 @@
#ifndef CONFIG_DISABLE_SIGNALS
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************
diff --git a/nuttx/arch/sh/src/sh1/sh1_timerisr.c b/nuttx/arch/sh/src/sh1/sh1_timerisr.c
index 2f988984f..cd48c4e92 100644
--- a/nuttx/arch/sh/src/sh1/sh1_timerisr.c
+++ b/nuttx/arch/sh/src/sh1/sh1_timerisr.c
@@ -53,7 +53,7 @@
#include "chip.h"
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
/* The desired timer interrupt frequency is provided by the definition
diff --git a/nuttx/arch/sh/src/sh1/sh1_vector.S b/nuttx/arch/sh/src/sh1/sh1_vector.S
index a16fb8f0b..396e33cd2 100644
--- a/nuttx/arch/sh/src/sh1/sh1_vector.S
+++ b/nuttx/arch/sh/src/sh1/sh1_vector.S
@@ -45,7 +45,7 @@
#include "up_internal.h"
/*****************************************************************************
- * Definitions
+ * Pre-processor Definitions
*****************************************************************************/
/*****************************************************************************