You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ha...@apache.org on 2020/09/09 18:09:52 UTC

[incubator-nuttx] branch master updated: arch/: Trivial typos, mostly "their is" to "there is"

This is an automated email from the ASF dual-hosted git repository.

hartmannathan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new 06ca12e  arch/: Trivial typos, mostly "their is" to "there is"
06ca12e is described below

commit 06ca12e6b9ffdf061b14dfb8d68f0897b9c8c873
Author: Ouss4 <ab...@gmail.com>
AuthorDate: Wed Sep 9 18:56:35 2020 +0100

    arch/: Trivial typos, mostly "their is" to "there is"
---
 arch/README.txt                            |  6 +++---
 arch/arm/src/common/arm_idle.c             |  2 +-
 arch/arm/src/cxd56xx/cxd56_idle.c          |  2 +-
 arch/arm/src/efm32/efm32_idle.c            |  2 +-
 arch/arm/src/eoss3/eoss3_idle.c            |  2 +-
 arch/arm/src/imx6/imx_idle.c               |  2 +-
 arch/arm/src/imxrt/imxrt_idle.c            |  2 +-
 arch/arm/src/kinetis/kinetis_idle.c        |  2 +-
 arch/arm/src/kl/kl_idle.c                  |  2 +-
 arch/arm/src/lc823450/lc823450_idle.c      |  2 +-
 arch/arm/src/lpc17xx_40xx/lpc17_40_idle.c  |  2 +-
 arch/arm/src/lpc43xx/lpc43_idle.c          |  2 +-
 arch/arm/src/lpc54xx/lpc54_idle.c          |  2 +-
 arch/arm/src/max326xx/common/max326_idle.c |  2 +-
 arch/arm/src/moxart/moxart_idle.c          |  2 +-
 arch/arm/src/nrf52/nrf52_idle.c            |  2 +-
 arch/arm/src/nuc1xx/nuc_idle.c             |  2 +-
 arch/arm/src/s32k1xx/s32k1xx_idle.c        |  2 +-
 arch/arm/src/sam34/sam4cm_cpuidlestack.c   |  2 +-
 arch/arm/src/sam34/sam4cm_idle.c           |  2 +-
 arch/arm/src/samd2l2/sam_idle.c            |  2 +-
 arch/arm/src/samd5e5/sam_idle.c            |  2 +-
 arch/arm/src/stm32/stm32_idle.c            |  8 ++++----
 arch/arm/src/stm32f0l0g0/stm32_idle.c      |  2 +-
 arch/arm/src/stm32l4/stm32l4_idle.c        |  2 +-
 arch/arm/src/tiva/common/tiva_idle.c       |  2 +-
 arch/arm/src/xmc4/xmc4_idle.c              |  2 +-
 arch/avr/src/common/up_idle.c              |  2 +-
 arch/hc/src/common/up_idle.c               |  2 +-
 arch/mips/src/common/mips_idle.c           |  2 +-
 arch/misoc/src/minerva/minerva_idle.c      | 12 ++++++------
 arch/or1k/src/common/up_idle.c             |  2 +-
 arch/risc-v/src/common/riscv_idle.c        |  2 +-
 arch/risc-v/src/fe310/fe310_idle.c         |  2 +-
 arch/risc-v/src/gap8/gap8_idle.c           |  2 +-
 arch/risc-v/src/k210/k210_idle.c           |  2 +-
 arch/risc-v/src/litex/litex_idle.c         |  2 +-
 arch/sim/src/sim/up_idle.c                 |  2 +-
 arch/x86/src/qemu/qemu_idle.c              |  2 +-
 arch/x86_64/src/intel64/intel64_idle.c     |  2 +-
 arch/xtensa/src/common/xtensa_idle.c       |  2 +-
 boards/README.txt                          |  6 ++----
 42 files changed, 53 insertions(+), 55 deletions(-)

diff --git a/arch/README.txt b/arch/README.txt
index b9317fd..324fb0e 100644
--- a/arch/README.txt
+++ b/arch/README.txt
@@ -45,8 +45,8 @@ Directory Structure
 
 The arch/ directory contains architecture-specific logic.  The complete
 board port is defined by the architecture-specific code in this
-directory plus the board-specific configurations in the config/
-subdirectory.  Each architecture must provide a subdirectory <arch-name>
+directory plus the board-specific configurations in the boards/
+directory.  Each architecture must provide a subdirectory <arch-name>
 under arch/ with the following characteristics:
 
 
@@ -110,7 +110,7 @@ include/irq.h
 
   - irqstate_t up_irq_save(void) -- Used to disable all interrupts.
 
-  - void upirq_restore(irqstate_t flags) -- Used to restore interrupt
+  - void up_irq_restore(irqstate_t flags) -- Used to restore interrupt
     enables to the same state as before up_irq_save was called.
 
   NOTE: These interfaces are not available to application code but can
diff --git a/arch/arm/src/common/arm_idle.c b/arch/arm/src/common/arm_idle.c
index d29fca0..8343dc0 100644
--- a/arch/arm/src/common/arm_idle.c
+++ b/arch/arm/src/common/arm_idle.c
@@ -50,7 +50,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/arm/src/cxd56xx/cxd56_idle.c b/arch/arm/src/cxd56xx/cxd56_idle.c
index ecec21c..d508ee8 100644
--- a/arch/arm/src/cxd56xx/cxd56_idle.c
+++ b/arch/arm/src/cxd56xx/cxd56_idle.c
@@ -157,7 +157,7 @@ static void up_idlepm(void)
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/arm/src/efm32/efm32_idle.c b/arch/arm/src/efm32/efm32_idle.c
index 19f138a..b95aca6 100644
--- a/arch/arm/src/efm32/efm32_idle.c
+++ b/arch/arm/src/efm32/efm32_idle.c
@@ -165,7 +165,7 @@ static void up_idlepm(void)
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/arm/src/eoss3/eoss3_idle.c b/arch/arm/src/eoss3/eoss3_idle.c
index 6c99bb4..ae40234 100644
--- a/arch/arm/src/eoss3/eoss3_idle.c
+++ b/arch/arm/src/eoss3/eoss3_idle.c
@@ -50,7 +50,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/arm/src/imx6/imx_idle.c b/arch/arm/src/imx6/imx_idle.c
index 10db633..d8a195a 100644
--- a/arch/arm/src/imx6/imx_idle.c
+++ b/arch/arm/src/imx6/imx_idle.c
@@ -35,7 +35,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/arm/src/imxrt/imxrt_idle.c b/arch/arm/src/imxrt/imxrt_idle.c
index 54eef24..33c4084 100644
--- a/arch/arm/src/imxrt/imxrt_idle.c
+++ b/arch/arm/src/imxrt/imxrt_idle.c
@@ -154,7 +154,7 @@ static void up_idlepm(void)
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/arm/src/kinetis/kinetis_idle.c b/arch/arm/src/kinetis/kinetis_idle.c
index b78e26c..ebd0e70 100644
--- a/arch/arm/src/kinetis/kinetis_idle.c
+++ b/arch/arm/src/kinetis/kinetis_idle.c
@@ -77,7 +77,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/arm/src/kl/kl_idle.c b/arch/arm/src/kl/kl_idle.c
index 23b0045..aa3fe25 100644
--- a/arch/arm/src/kl/kl_idle.c
+++ b/arch/arm/src/kl/kl_idle.c
@@ -158,7 +158,7 @@ static void up_idlepm(void)
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/arm/src/lc823450/lc823450_idle.c b/arch/arm/src/lc823450/lc823450_idle.c
index 3e901b3..217abee 100644
--- a/arch/arm/src/lc823450/lc823450_idle.c
+++ b/arch/arm/src/lc823450/lc823450_idle.c
@@ -51,7 +51,7 @@ static uint32_t g_idle_counter[2];
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/arm/src/lpc17xx_40xx/lpc17_40_idle.c b/arch/arm/src/lpc17xx_40xx/lpc17_40_idle.c
index 30626ba..6d9486f 100644
--- a/arch/arm/src/lpc17xx_40xx/lpc17_40_idle.c
+++ b/arch/arm/src/lpc17xx_40xx/lpc17_40_idle.c
@@ -78,7 +78,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/arm/src/lpc43xx/lpc43_idle.c b/arch/arm/src/lpc43xx/lpc43_idle.c
index df66331..effce23 100644
--- a/arch/arm/src/lpc43xx/lpc43_idle.c
+++ b/arch/arm/src/lpc43xx/lpc43_idle.c
@@ -153,7 +153,7 @@ static void up_idlepm(void)
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/arm/src/lpc54xx/lpc54_idle.c b/arch/arm/src/lpc54xx/lpc54_idle.c
index 3e6e3d0..a6676fb 100644
--- a/arch/arm/src/lpc54xx/lpc54_idle.c
+++ b/arch/arm/src/lpc54xx/lpc54_idle.c
@@ -153,7 +153,7 @@ static void up_idlepm(void)
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/arm/src/max326xx/common/max326_idle.c b/arch/arm/src/max326xx/common/max326_idle.c
index ad9e1e0..4501d2d 100644
--- a/arch/arm/src/max326xx/common/max326_idle.c
+++ b/arch/arm/src/max326xx/common/max326_idle.c
@@ -153,7 +153,7 @@ static void up_idlepm(void)
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/arm/src/moxart/moxart_idle.c b/arch/arm/src/moxart/moxart_idle.c
index 751404e..6d523d2 100644
--- a/arch/arm/src/moxart/moxart_idle.c
+++ b/arch/arm/src/moxart/moxart_idle.c
@@ -65,7 +65,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/arm/src/nrf52/nrf52_idle.c b/arch/arm/src/nrf52/nrf52_idle.c
index f6851b1..5d56678 100644
--- a/arch/arm/src/nrf52/nrf52_idle.c
+++ b/arch/arm/src/nrf52/nrf52_idle.c
@@ -153,7 +153,7 @@ static void up_idlepm(void)
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/arm/src/nuc1xx/nuc_idle.c b/arch/arm/src/nuc1xx/nuc_idle.c
index 60950d9..53c9422 100644
--- a/arch/arm/src/nuc1xx/nuc_idle.c
+++ b/arch/arm/src/nuc1xx/nuc_idle.c
@@ -154,7 +154,7 @@ static void up_idlepm(void)
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/arm/src/s32k1xx/s32k1xx_idle.c b/arch/arm/src/s32k1xx/s32k1xx_idle.c
index 1c8f448..1734c83 100644
--- a/arch/arm/src/s32k1xx/s32k1xx_idle.c
+++ b/arch/arm/src/s32k1xx/s32k1xx_idle.c
@@ -67,7 +67,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/arm/src/sam34/sam4cm_cpuidlestack.c b/arch/arm/src/sam34/sam4cm_cpuidlestack.c
index 53cc286..ffcacee 100644
--- a/arch/arm/src/sam34/sam4cm_cpuidlestack.c
+++ b/arch/arm/src/sam34/sam4cm_cpuidlestack.c
@@ -56,7 +56,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/arm/src/sam34/sam4cm_idle.c b/arch/arm/src/sam34/sam4cm_idle.c
index 4692df7..986fbab 100644
--- a/arch/arm/src/sam34/sam4cm_idle.c
+++ b/arch/arm/src/sam34/sam4cm_idle.c
@@ -50,7 +50,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/arm/src/samd2l2/sam_idle.c b/arch/arm/src/samd2l2/sam_idle.c
index 3e6ac5c..9208b2a 100644
--- a/arch/arm/src/samd2l2/sam_idle.c
+++ b/arch/arm/src/samd2l2/sam_idle.c
@@ -154,7 +154,7 @@ static void up_idlepm(void)
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/arm/src/samd5e5/sam_idle.c b/arch/arm/src/samd5e5/sam_idle.c
index df7ed3e..40f585f 100644
--- a/arch/arm/src/samd5e5/sam_idle.c
+++ b/arch/arm/src/samd5e5/sam_idle.c
@@ -153,7 +153,7 @@ static void up_idlepm(void)
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/arm/src/stm32/stm32_idle.c b/arch/arm/src/stm32/stm32_idle.c
index 0775ebf..c78becb 100644
--- a/arch/arm/src/stm32/stm32_idle.c
+++ b/arch/arm/src/stm32/stm32_idle.c
@@ -156,7 +156,7 @@ static void up_idlepm(void)
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
@@ -187,9 +187,9 @@ void up_idle(void)
    * "2.17.11 Ethernet DMA not working after WFI/WFE instruction
    *  Description
    *  If a WFI/WFE instruction is executed to put the system in sleep mode
-   *    while the Ethernet MAC master clock on the AHB bus matrix is ON and all
-   *    remaining masters clocks are OFF, the Ethernet DMA will be not able to
-   *    perform any AHB master accesses during sleep mode."
+   *    while the Ethernet MAC master clock on the AHB bus matrix is ON and
+   *    all remaining masters clocks are OFF, the Ethernet DMA will be not
+   *    able to perform any AHB master accesses during sleep mode."
    *
    *  Workaround
    *    Enable DMA1 or DMA2 clocks in the RCC_AHBENR register before
diff --git a/arch/arm/src/stm32f0l0g0/stm32_idle.c b/arch/arm/src/stm32f0l0g0/stm32_idle.c
index d4fb472..b5d98b9 100644
--- a/arch/arm/src/stm32f0l0g0/stm32_idle.c
+++ b/arch/arm/src/stm32f0l0g0/stm32_idle.c
@@ -69,7 +69,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/arm/src/stm32l4/stm32l4_idle.c b/arch/arm/src/stm32l4/stm32l4_idle.c
index ffb568b..0cabdc7 100644
--- a/arch/arm/src/stm32l4/stm32l4_idle.c
+++ b/arch/arm/src/stm32l4/stm32l4_idle.c
@@ -174,7 +174,7 @@ static void up_idlepm(void)
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/arm/src/tiva/common/tiva_idle.c b/arch/arm/src/tiva/common/tiva_idle.c
index 3d5f1f9..8370e33 100644
--- a/arch/arm/src/tiva/common/tiva_idle.c
+++ b/arch/arm/src/tiva/common/tiva_idle.c
@@ -35,7 +35,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/arm/src/xmc4/xmc4_idle.c b/arch/arm/src/xmc4/xmc4_idle.c
index dbc0ede..7a058b0 100644
--- a/arch/arm/src/xmc4/xmc4_idle.c
+++ b/arch/arm/src/xmc4/xmc4_idle.c
@@ -77,7 +77,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/avr/src/common/up_idle.c b/arch/avr/src/common/up_idle.c
index 31ff827..6301a94 100644
--- a/arch/avr/src/common/up_idle.c
+++ b/arch/avr/src/common/up_idle.c
@@ -62,7 +62,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their
+ *   up_idle() is the logic that will be executed when there
  *   is no other ready-to-run task.  This is processor idle
  *   time and will continue until some interrupt occurs to
  *   cause a context switch from the idle task.
diff --git a/arch/hc/src/common/up_idle.c b/arch/hc/src/common/up_idle.c
index 5be8538..2c5903f 100644
--- a/arch/hc/src/common/up_idle.c
+++ b/arch/hc/src/common/up_idle.c
@@ -62,7 +62,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/mips/src/common/mips_idle.c b/arch/mips/src/common/mips_idle.c
index 196a7ec..fffff81 100644
--- a/arch/mips/src/common/mips_idle.c
+++ b/arch/mips/src/common/mips_idle.c
@@ -51,7 +51,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/misoc/src/minerva/minerva_idle.c b/arch/misoc/src/minerva/minerva_idle.c
index dd2693e..1b2d6a3 100644
--- a/arch/misoc/src/minerva/minerva_idle.c
+++ b/arch/misoc/src/minerva/minerva_idle.c
@@ -52,7 +52,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
@@ -76,12 +76,12 @@ void up_idle(void)
    *
    * This is a kludge that I still don't understand.  The call to
    * kmm_trysemaphore() in the nx_start.c IDLE loop seems necessary for the
-   * good health of the IDLE loop.  When the work queue is enabled, this logic
+   * good health of the IDLE loop. When the work queue is enabled, this logic
    * is removed from the IDLE loop and it appears that we are somehow left
-   * idling with interrupts non- functional. The following should be no-op, it
-   * just disables then re-enables interrupts.  But it fixes the problem and
-   * will stay here until I understand the problem/fix better. And no, the
-   * contents of the CP0 status register are not incorrect.  But for some
+   * idling with interrupts non- functional. The following should be no-op,
+   * it just disables then re-enables interrupts.  But it fixes the problem
+   * and will stay here until I understand the problem/fix better. And no,
+   * the contents of the CP0 status register are not incorrect.  But for some
    * reason the status register needs to be re-written again on this thread
    * for it to take effect.
    */
diff --git a/arch/or1k/src/common/up_idle.c b/arch/or1k/src/common/up_idle.c
index dfac119..4c1b1fe 100644
--- a/arch/or1k/src/common/up_idle.c
+++ b/arch/or1k/src/common/up_idle.c
@@ -50,7 +50,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/risc-v/src/common/riscv_idle.c b/arch/risc-v/src/common/riscv_idle.c
index 24aae0f..d1857de 100644
--- a/arch/risc-v/src/common/riscv_idle.c
+++ b/arch/risc-v/src/common/riscv_idle.c
@@ -51,7 +51,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/risc-v/src/fe310/fe310_idle.c b/arch/risc-v/src/fe310/fe310_idle.c
index 82f2405..296e043 100644
--- a/arch/risc-v/src/fe310/fe310_idle.c
+++ b/arch/risc-v/src/fe310/fe310_idle.c
@@ -55,7 +55,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/risc-v/src/gap8/gap8_idle.c b/arch/risc-v/src/gap8/gap8_idle.c
index 0f96593..eb39bb1 100644
--- a/arch/risc-v/src/gap8/gap8_idle.c
+++ b/arch/risc-v/src/gap8/gap8_idle.c
@@ -51,7 +51,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/risc-v/src/k210/k210_idle.c b/arch/risc-v/src/k210/k210_idle.c
index abbefc0..b2d20df 100644
--- a/arch/risc-v/src/k210/k210_idle.c
+++ b/arch/risc-v/src/k210/k210_idle.c
@@ -53,7 +53,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/risc-v/src/litex/litex_idle.c b/arch/risc-v/src/litex/litex_idle.c
index be8f3cf..e551dea 100644
--- a/arch/risc-v/src/litex/litex_idle.c
+++ b/arch/risc-v/src/litex/litex_idle.c
@@ -38,7 +38,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/sim/src/sim/up_idle.c b/arch/sim/src/sim/up_idle.c
index e5be5cd..d319b9d 100644
--- a/arch/sim/src/sim/up_idle.c
+++ b/arch/sim/src/sim/up_idle.c
@@ -59,7 +59,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their
+ *   up_idle() is the logic that will be executed when there
  *   is no other ready-to-run task.  This is processor idle
  *   time and will continue until some interrupt occurs to
  *   cause a context switch from the idle task.
diff --git a/arch/x86/src/qemu/qemu_idle.c b/arch/x86/src/qemu/qemu_idle.c
index 630fd44..60a0474 100644
--- a/arch/x86/src/qemu/qemu_idle.c
+++ b/arch/x86/src/qemu/qemu_idle.c
@@ -62,7 +62,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/x86_64/src/intel64/intel64_idle.c b/arch/x86_64/src/intel64/intel64_idle.c
index 229eb2b..9b0a91c 100644
--- a/arch/x86_64/src/intel64/intel64_idle.c
+++ b/arch/x86_64/src/intel64/intel64_idle.c
@@ -47,7 +47,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/arch/xtensa/src/common/xtensa_idle.c b/arch/xtensa/src/common/xtensa_idle.c
index 83cd937..237df1a 100644
--- a/arch/xtensa/src/common/xtensa_idle.c
+++ b/arch/xtensa/src/common/xtensa_idle.c
@@ -51,7 +51,7 @@
  * Name: up_idle
  *
  * Description:
- *   up_idle() is the logic that will be executed when their is no other
+ *   up_idle() is the logic that will be executed when there is no other
  *   ready-to-run task.  This is processor idle time and will continue until
  *   some interrupt occurs to cause a context switch from the idle task.
  *
diff --git a/boards/README.txt b/boards/README.txt
index 671b4cf..40cf21f 100644
--- a/boards/README.txt
+++ b/boards/README.txt
@@ -1,10 +1,8 @@
 Board-Specific Configurations
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-This directory contains the board support for logic for all boards supported
-by NuttX.  This directory is retained in a separate repository and is a Sub-
-Module of NuttX and will appear as nuttx/boards when the NuttX repository
-is cloned.
+This directory contains the board support logic for all boards supported
+by NuttX.
 
 The nuttx/boards directory is a part of the internal OS.  It should contain
 only OS bring-up logic and driver initialization logic.  THERE SHOULD BE NO