summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/lpc43xx
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-08-27 09:40:19 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-08-27 09:40:19 -0600
commite84937a34489eab1669338bf8e3bb6c07e9d7295 (patch)
tree5fcaae860d74eeaf009b81a51292b3fe6c9865fd /nuttx/arch/arm/src/lpc43xx
parentf760141ba6b1536afc27451db9dd90d7a207ae5f (diff)
downloadnuttx-e84937a34489eab1669338bf8e3bb6c07e9d7295.tar.gz
nuttx-e84937a34489eab1669338bf8e3bb6c07e9d7295.tar.bz2
nuttx-e84937a34489eab1669338bf8e3bb6c07e9d7295.zip
Fix all occurrences of "the the" in documentation and comments
Diffstat (limited to 'nuttx/arch/arm/src/lpc43xx')
-rw-r--r--nuttx/arch/arm/src/lpc43xx/lpc43_rgu.c4
-rw-r--r--nuttx/arch/arm/src/lpc43xx/lpc43_rgu.h2
-rw-r--r--nuttx/arch/arm/src/lpc43xx/lpc43_start.c8
3 files changed, 7 insertions, 7 deletions
diff --git a/nuttx/arch/arm/src/lpc43xx/lpc43_rgu.c b/nuttx/arch/arm/src/lpc43xx/lpc43_rgu.c
index d5ab819dc..f42fda3c2 100644
--- a/nuttx/arch/arm/src/lpc43xx/lpc43_rgu.c
+++ b/nuttx/arch/arm/src/lpc43xx/lpc43_rgu.c
@@ -76,7 +76,7 @@
* Reset as many of the LPC43 peripherals as possible. This is necessary
* because the LPC43 does not provide any way of performing a full system
* reset under debugger control. So, if CONFIG_DEBUG is set (indicating
- * that a debugger is being used?), the the boot logic will call this
+ * that a debugger is being used?), the boot logic will call this
* function on all restarts.
*
* Assumptions:
@@ -93,7 +93,7 @@ void lpc43_softreset(void)
/* Disable interrupts */
flags = irqsave();
-
+
/* Reset all of the peripherals that we can (safely) */
putreg32((RGU_CTRL0_LCD_RST | RGU_CTRL0_USB0_RST |
diff --git a/nuttx/arch/arm/src/lpc43xx/lpc43_rgu.h b/nuttx/arch/arm/src/lpc43xx/lpc43_rgu.h
index 364b4d066..80b56adde 100644
--- a/nuttx/arch/arm/src/lpc43xx/lpc43_rgu.h
+++ b/nuttx/arch/arm/src/lpc43xx/lpc43_rgu.h
@@ -76,7 +76,7 @@ extern "C" {
* Reset as many of the LPC43 peripherals as possible. This is necessary
* because the LPC43 does not provide any way of performing a full system
* reset under debugger control. So, if CONFIG_DEBUG is set (indicating
- * that a debugger is being used?), the the boot logic will call this
+ * that a debugger is being used?), the boot logic will call this
* function on all restarts.
*
****************************************************************************/
diff --git a/nuttx/arch/arm/src/lpc43xx/lpc43_start.c b/nuttx/arch/arm/src/lpc43xx/lpc43_start.c
index bb9d8c6ab..8dc9f66b9 100644
--- a/nuttx/arch/arm/src/lpc43xx/lpc43_start.c
+++ b/nuttx/arch/arm/src/lpc43xx/lpc43_start.c
@@ -114,7 +114,7 @@ static inline void lpc43_setbootrom(void)
putreg32(LPC43_ROM_BASE, LPC43_CREG_M4MEMMAP);
- /* Address zero now maps to the Boot ROM. Make sure the the VTOR will
+ /* Address zero now maps to the Boot ROM. Make sure that the VTOR will
* use the ROM vector table at that address.
*/
@@ -197,7 +197,7 @@ static inline void lpc43_fpuconfig(void)
* with the volatile FP registers stacked above the basic context.
*/
- regval = getcontrol();
+ regval = getcontrol();
regval |= (1 << 2);
setcontrol(regval);
@@ -227,7 +227,7 @@ static inline void lpc43_fpuconfig(void)
* with the volatile FP registers stacked in the saved context.
*/
- regval = getcontrol();
+ regval = getcontrol();
regval &= ~(1 << 2);
setcontrol(regval);
@@ -273,7 +273,7 @@ void __start(void)
/* Reset as many of the LPC43 peripherals as possible. This is necessary
* because the LPC43 does not provide any way of performing a full system
* reset under debugger control. So, if CONFIG_DEBUG is set (indicating
- * that a debugger is being used?), the the boot logic will call this
+ * that a debugger is being used?), the boot logic will call this
* function on all restarts.
*/