Documentation/: Remove dangling space at the end of lines.

This commit is contained in:
Gregory Nutt
2017-06-28 13:27:10 -06:00
parent c67b807f43
commit a469f0ef04
17 changed files with 31 additions and 31 deletions
+1 -1
View File
@@ -5010,7 +5010,7 @@ CONFIG_NSH_LOGIN_FAILCOUNT=3
CONFIG_NSH_LOGIN_FIXED=y CONFIG_NSH_LOGIN_FIXED=y
</pre></ul> </pre></ul>
<p> <p>
The fixed login credentials are selected via: The fixed login credentials are selected via:
</p> </p>
<ul><pre> <ul><pre>
CONFIG_NSH_LOGIN_USERNAME=admin CONFIG_NSH_LOGIN_USERNAME=admin
+3 -3
View File
@@ -3297,7 +3297,7 @@ void lpwork_restorepriority(uint8_t reqprio);
<p> <p>
If <code>CONFIG_ARCH_KERNEL_STACK=y</code> is selected then the platform specific code must export these additional interfaces: If <code>CONFIG_ARCH_KERNEL_STACK=y</code> is selected then the platform specific code must export these additional interfaces:
</p> </p>
<ul> <ul>
<li> <li>
<a href="#up_addrenv_kstackalloc">4.5.15 <code>up_addrenv_kstackalloc()</code></a>: <a href="#up_addrenv_kstackalloc">4.5.15 <code>up_addrenv_kstackalloc()</code></a>:
Allocate the process kernel stack. Allocate the process kernel stack.
@@ -3699,7 +3699,7 @@ void lpwork_restorepriority(uint8_t reqprio);
<h4><a name="boardsmp">4.7 Symmetric Multiprocessing (SMP) Application Interface</a></h4> <h4><a name="boardsmp">4.7 Symmetric Multiprocessing (SMP) Application Interface</a></h4>
<p> <p>
According to Wikipedia: "Symmetric multiprocessing (SMP) involves a symmetric multiprocessor system hardware and software architecture where two or more identical processors connect to a single, shared main memory, have full access to all I/O devices, and are controlled by a single operating system instance that treats all processors equally, reserving none for special purposes. Most multiprocessor systems today use an SMP architecture. In the case of multi-core processors, the SMP architecture applies to the cores, treating them as separate processors. According to Wikipedia: "Symmetric multiprocessing (SMP) involves a symmetric multiprocessor system hardware and software architecture where two or more identical processors connect to a single, shared main memory, have full access to all I/O devices, and are controlled by a single operating system instance that treats all processors equally, reserving none for special purposes. Most multiprocessor systems today use an SMP architecture. In the case of multi-core processors, the SMP architecture applies to the cores, treating them as separate processors.
</p> </p>
<p> <p>
"SMP systems are tightly coupled multiprocessor systems with a pool of homogeneous processors running independently, each processor executing different programs and working on different data and with capability of sharing common resources (memory, I/O device, interrupt system and so on) and connected using a system bus or a crossbar." "SMP systems are tightly coupled multiprocessor systems with a pool of homogeneous processors running independently, each processor executing different programs and working on different data and with capability of sharing common resources (memory, I/O device, interrupt system and so on) and connected using a system bus or a crossbar."
@@ -3735,7 +3735,7 @@ spinlock_t up_testset(volatile FAR spinlock_t *lock);
<p><b>Returned Value</b>:</p> <p><b>Returned Value</b>:</p>
<ul> <ul>
<p> <p>
The spinlock is always locked upon return. The spinlock is always locked upon return.
The value of previous value of the spinlock variable is returned, either <code>SP_LOCKED</code> if the spinlock was previously locked (meaning that the test-and-set operation failed to obtain the lock) or <code>SP_UNLOCKED</code> if the spinlock was previously unlocked (meaning that we successfully obtained the lock) The value of previous value of the spinlock variable is returned, either <code>SP_LOCKED</code> if the spinlock was previously locked (meaning that the test-and-set operation failed to obtain the lock) or <code>SP_UNLOCKED</code> if the spinlock was previously unlocked (meaning that we successfully obtained the lock)
</p> </p>
</ul> </ul>
+1 -1
View File
@@ -48,7 +48,7 @@ ifeq ($(WINTOOL),y)
ARCHXXINCLUDES = $(ARCHINCLUDES) "${shell cygpath -w $(TOPDIR)/include/cxx}" ARCHXXINCLUDES = $(ARCHINCLUDES) "${shell cygpath -w $(TOPDIR)/include/cxx}"
ARCHSCRIPT = -T "${shell cygpath -w $(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/scripts/$(LDSCRIPT)}" ARCHSCRIPT = -T "${shell cygpath -w $(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/scripts/$(LDSCRIPT)}"
else else
# Linux/Cygwin-native toolchain # Linux/Cygwin-native toolchain
MKDEP = $(TOPDIR)/tools/mkdeps$(HOSTEXEEXT) MKDEP = $(TOPDIR)/tools/mkdeps$(HOSTEXEEXT)
ARCHINCLUDES = -I. -isystem "$(TOPDIR)/include" ARCHINCLUDES = -I. -isystem "$(TOPDIR)/include"
ARCHXXINCLUDES = $(ARCHINCLUDES) -isystem "$(TOPDIR)/include/cxx" ARCHXXINCLUDES = $(ARCHINCLUDES) -isystem "$(TOPDIR)/include/cxx"
+1 -1
View File
@@ -48,7 +48,7 @@ ifeq ($(WINTOOL),y)
ARCHXXINCLUDES = $(ARCHINCLUDES) "${shell cygpath -w $(TOPDIR)/include/cxx}" ARCHXXINCLUDES = $(ARCHINCLUDES) "${shell cygpath -w $(TOPDIR)/include/cxx}"
ARCHSCRIPT = -T "${shell cygpath -w $(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/scripts/$(LDSCRIPT)}" ARCHSCRIPT = -T "${shell cygpath -w $(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/scripts/$(LDSCRIPT)}"
else else
# Linux/Cygwin-native toolchain # Linux/Cygwin-native toolchain
MKDEP = $(TOPDIR)/tools/mkdeps$(HOSTEXEEXT) MKDEP = $(TOPDIR)/tools/mkdeps$(HOSTEXEEXT)
ARCHINCLUDES = -I. -isystem "$(TOPDIR)/include" ARCHINCLUDES = -I. -isystem "$(TOPDIR)/include"
ARCHXXINCLUDES = $(ARCHINCLUDES) -isystem "$(TOPDIR)/include/cxx" ARCHXXINCLUDES = $(ARCHINCLUDES) -isystem "$(TOPDIR)/include/cxx"
+1 -1
View File
@@ -140,7 +140,7 @@ SECTIONS
.data : .data :
{ {
_sdata = ABSOLUTE(.); _sdata = ABSOLUTE(.);
*(.rodata .rodata.*) *(.rodata .rodata.*)
*(.data .data.*) *(.data .data.*)
*(.gnu.linkonce.d.*) *(.gnu.linkonce.d.*)
CONSTRUCTORS CONSTRUCTORS
+2 -2
View File
@@ -5,7 +5,7 @@
# Copyright (C) 2014 Droidifi LLC. All rights reserved. # Copyright (C) 2014 Droidifi LLC. All rights reserved.
# Author: Jim Ewing <jim@droidifi.com> # Author: Jim Ewing <jim@droidifi.com>
# #
# Redistributions must retain the above copyright notice and the # Redistributions must retain the above copyright notice and the
# following disclaimer. # following disclaimer.
# #
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
@@ -63,7 +63,7 @@ jtag configure $_CHIPNAME.jrc -event post-reset "runtest 100"
set _TARGETNAME $_CHIPNAME.cpu set _TARGETNAME $_CHIPNAME.cpu
target create $_CHIPNAME.cpu cortex_m -endian little -chain-position $_CHIPNAME.dap target create $_CHIPNAME.cpu cortex_m -endian little -chain-position $_CHIPNAME.dap
$_CHIPNAME.cpu configure -work-area-phys 0x20000000 -work-area-size 0x30000 -work-area-backup 0 -coreid 0 $_CHIPNAME.cpu configure -work-area-phys 0x20000000 -work-area-size 0x30000 -work-area-backup 0 -coreid 0
source [find mem_helper.tcl] source [find mem_helper.tcl]
+1 -1
View File
@@ -48,7 +48,7 @@ ifeq ($(WINTOOL),y)
ARCHXXINCLUDES = -I. -isystem "${shell cygpath -w $(TOPDIR)/include}" -isystem "${shell cygpath -w $(TOPDIR)/include/cxx}" ARCHXXINCLUDES = -I. -isystem "${shell cygpath -w $(TOPDIR)/include}" -isystem "${shell cygpath -w $(TOPDIR)/include/cxx}"
ARCHSCRIPT = -T "${shell cygpath -w $(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/scripts/$(LDSCRIPT)}" ARCHSCRIPT = -T "${shell cygpath -w $(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/scripts/$(LDSCRIPT)}"
else else
# Linux/Cygwin-native toolchain # Linux/Cygwin-native toolchain
MKDEP = $(TOPDIR)/tools/mkdeps$(HOSTEXEEXT) MKDEP = $(TOPDIR)/tools/mkdeps$(HOSTEXEEXT)
ARCHINCLUDES = -I. -isystem $(TOPDIR)/include ARCHINCLUDES = -I. -isystem $(TOPDIR)/include
ARCHXXINCLUDES = -I. -isystem $(TOPDIR)/include -isystem $(TOPDIR)/include/cxx ARCHXXINCLUDES = -I. -isystem $(TOPDIR)/include -isystem $(TOPDIR)/include/cxx
+1 -1
View File
@@ -48,7 +48,7 @@ ifeq ($(WINTOOL),y)
ARCHXXINCLUDES = -I. -isystem "${shell cygpath -w $(TOPDIR)/include}" -isystem "${shell cygpath -w $(TOPDIR)/include/cxx}" ARCHXXINCLUDES = -I. -isystem "${shell cygpath -w $(TOPDIR)/include}" -isystem "${shell cygpath -w $(TOPDIR)/include/cxx}"
ARCHSCRIPT = -T "${shell cygpath -w $(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/scripts/$(LDSCRIPT)}" ARCHSCRIPT = -T "${shell cygpath -w $(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/scripts/$(LDSCRIPT)}"
else else
# Linux/Cygwin-native toolchain # Linux/Cygwin-native toolchain
MKDEP = $(TOPDIR)/tools/mkdeps$(HOSTEXEEXT) MKDEP = $(TOPDIR)/tools/mkdeps$(HOSTEXEEXT)
ARCHINCLUDES = -I. -isystem $(TOPDIR)/include ARCHINCLUDES = -I. -isystem $(TOPDIR)/include
ARCHXXINCLUDES = -I. -isystem $(TOPDIR)/include -isystem $(TOPDIR)/include/cxx ARCHXXINCLUDES = -I. -isystem $(TOPDIR)/include -isystem $(TOPDIR)/include/cxx
+2 -2
View File
@@ -3,7 +3,7 @@
* *
* Copyright (C) 2016-2017 Gregory Nutt. All rights reserved. * Copyright (C) 2016-2017 Gregory Nutt. All rights reserved.
* Authors: Gregory Nutt <gnutt@nuttx.org> * Authors: Gregory Nutt <gnutt@nuttx.org>
* David Sidrane <david_s5@nscdg.com> * David Sidrane <david_s5@nscdg.com>
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions * modification, are permitted provided that the following conditions
@@ -35,7 +35,7 @@
****************************************************************************/ ****************************************************************************/
/* The MK66FN2M0VMD18 has 2M of FLASH beginning at address 0x0000:0000 and /* The MK66FN2M0VMD18 has 2M of FLASH beginning at address 0x0000:0000 and
* 256Kb of SRAM beginning at address 0x1fff:0000 (SRAM_L)(64Kb) and * 256Kb of SRAM beginning at address 0x1fff:0000 (SRAM_L)(64Kb) and
* 0x2000:0000 (SRAM_U) (192Kb). * 0x2000:0000 (SRAM_U) (192Kb).
* *
* NOTE: that the first part of the K66 FLASH region is reserved for * NOTE: that the first part of the K66 FLASH region is reserved for
+1 -1
View File
@@ -70,7 +70,7 @@ SECTIONS
*(.gnu.linkonce.d.*) *(.gnu.linkonce.d.*)
CONSTRUCTORS CONSTRUCTORS
_edata = ABSOLUTE(.); _edata = ABSOLUTE(.);
} > main_ram } > main_ram
.bss : { /* BSS */ .bss : { /* BSS */
_sbss = ABSOLUTE(.); _sbss = ABSOLUTE(.);
+10 -10
View File
@@ -129,7 +129,7 @@ SECTIONS
_vectors = .; _vectors = .;
/* vectors: Program code section */ /* vectors: Program code section */
.vectors : .vectors :
{ {
*(.text.vec) *(.text.vec)
*(.text.vec.*) *(.text.vec.*)
@@ -147,7 +147,7 @@ SECTIONS
PROVIDE( eprol = . ); PROVIDE( eprol = . );
/* text: Program code section */ /* text: Program code section */
.text : .text :
{ {
_stext = ABSOLUTE(.); _stext = ABSOLUTE(.);
*(.text) *(.text)
@@ -156,20 +156,20 @@ SECTIONS
} }
/* init: Code to execute before main (called by crt0.S) */ /* init: Code to execute before main (called by crt0.S) */
.init : .init :
{ {
KEEP( *(.init) ) KEEP( *(.init) )
} }
/* fini: Code to execute after main (called by crt0.S) */ /* fini: Code to execute after main (called by crt0.S) */
.fini : .fini :
{ {
KEEP( *(.fini) ) KEEP( *(.fini) )
} }
/* rodata: Read-only data */ /* rodata: Read-only data */
_rodata = .; _rodata = .;
.rodata : .rodata :
{ {
*(.rdata) *(.rdata)
*(.rodata) *(.rodata)
@@ -218,7 +218,7 @@ SECTIONS
.eh_frame_hdr : { *(.eh_frame_hdr) } .eh_frame_hdr : { *(.eh_frame_hdr) }
.eh_frame : { KEEP( *(.eh_frame) ) } .eh_frame : { KEEP( *(.eh_frame) ) }
.gcc_except_table : { *(.gcc_except_table) } .gcc_except_table : { *(.gcc_except_table) }
.jcr : { KEEP (*(.jcr)) } .jcr : { KEEP (*(.jcr)) }
/*--------------------------------------------------------------------*/ /*--------------------------------------------------------------------*/
/* Initialized data segment */ /* Initialized data segment */
@@ -230,7 +230,7 @@ SECTIONS
/* data: Writable data */ /* data: Writable data */
_sdata = .; _sdata = .;
.data : .data :
{ {
*(.data) *(.data)
*(.data.*) *(.data.*)
@@ -246,7 +246,7 @@ SECTIONS
_gp = . + 0x7FF0; _gp = . + 0x7FF0;
/* Writable small data segment */ /* Writable small data segment */
.sdata : .sdata :
{ {
*(.sdata) *(.sdata)
*(.sdata.*) *(.sdata.*)
@@ -264,7 +264,7 @@ SECTIONS
_fbss = .; _fbss = .;
/* Writable uninitialized small data segment */ /* Writable uninitialized small data segment */
.sbss : .sbss :
{ {
*(.sbss) *(.sbss)
*(.sbss.*) *(.sbss.*)
@@ -274,7 +274,7 @@ SECTIONS
/* bss: Uninitialized writeable data section */ /* bss: Uninitialized writeable data section */
. = .; . = .;
_bss_start = .; _bss_start = .;
.bss : .bss :
{ {
*(.bss) *(.bss)
*(.bss.*) *(.bss.*)
+1 -1
View File
@@ -35,7 +35,7 @@
#====================================== #======================================
# #
# Define the interface # Define the interface
# #
#===================================== #=====================================
@@ -48,7 +48,7 @@ ifeq ($(WINTOOL),y)
ARCHXXINCLUDES = -I. -isystem "${shell cygpath -w $(TOPDIR)/include}" -isystem "${shell cygpath -w $(TOPDIR)/include/cxx}" ARCHXXINCLUDES = -I. -isystem "${shell cygpath -w $(TOPDIR)/include}" -isystem "${shell cygpath -w $(TOPDIR)/include/cxx}"
ARCHSCRIPT = -T "${shell cygpath -w $(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/scripts/$(LDSCRIPT)}" ARCHSCRIPT = -T "${shell cygpath -w $(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/scripts/$(LDSCRIPT)}"
else else
# Linux/Cygwin-native toolchain # Linux/Cygwin-native toolchain
MKDEP = $(TOPDIR)/tools/mkdeps$(HOSTEXEEXT) MKDEP = $(TOPDIR)/tools/mkdeps$(HOSTEXEEXT)
ARCHINCLUDES = -I. -isystem $(TOPDIR)/include ARCHINCLUDES = -I. -isystem $(TOPDIR)/include
ARCHXXINCLUDES = -I. -isystem $(TOPDIR)/include -isystem $(TOPDIR)/include/cxx ARCHXXINCLUDES = -I. -isystem $(TOPDIR)/include -isystem $(TOPDIR)/include/cxx
+1 -1
View File
@@ -46,7 +46,7 @@ ifeq ($(WINTOOL),y)
ARCHXXINCLUDES = -I. -isystem "${shell cygpath -w $(TOPDIR)/include}" -isystem "${shell cygpath -w $(TOPDIR)/include/cxx}" ARCHXXINCLUDES = -I. -isystem "${shell cygpath -w $(TOPDIR)/include}" -isystem "${shell cygpath -w $(TOPDIR)/include/cxx}"
ARCHSCRIPT = -T "${shell cygpath -w $(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/scripts/ld.script}" ARCHSCRIPT = -T "${shell cygpath -w $(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/scripts/ld.script}"
else else
# Linux/Cygwin-native toolchain # Linux/Cygwin-native toolchain
MKDEP = $(TOPDIR)/tools/mkdeps$(HOSTEXEEXT) MKDEP = $(TOPDIR)/tools/mkdeps$(HOSTEXEEXT)
ARCHINCLUDES = -I. -isystem $(TOPDIR)/include ARCHINCLUDES = -I. -isystem $(TOPDIR)/include
ARCHXXINCLUDES = -I. -isystem $(TOPDIR)/include -isystem $(TOPDIR)/include/cxx ARCHXXINCLUDES = -I. -isystem $(TOPDIR)/include -isystem $(TOPDIR)/include/cxx
+2 -2
View File
@@ -33,12 +33,12 @@
* *
****************************************************************************/ ****************************************************************************/
/* The ATSAM4SD32C has 2 banks of 1MB of FLASH beginning at address /* The ATSAM4SD32C has 2 banks of 1MB of FLASH beginning at address
* 0x0040:0000 and 160KB of SRAM beginning at address 0x2000:0000 * 0x0040:0000 and 160KB of SRAM beginning at address 0x2000:0000
* *
* Flash 0 / 1 can be swapped with the GPNVM bit 2. We'll avoid using * Flash 0 / 1 can be swapped with the GPNVM bit 2. We'll avoid using
* the 2nd bank to allow this as an option for firmware upgrading or failsafe * the 2nd bank to allow this as an option for firmware upgrading or failsafe
* *
*/ */
MEMORY MEMORY
+1 -1
View File
@@ -139,7 +139,7 @@ SECTIONS
.data : .data :
{ {
_sdata = ABSOLUTE(.); _sdata = ABSOLUTE(.);
*(.rodata .rodata.*) *(.rodata .rodata.*)
*(.data .data.*) *(.data .data.*)
*(.gnu.linkonce.d.*) *(.gnu.linkonce.d.*)
CONSTRUCTORS CONSTRUCTORS
+1 -1
View File
@@ -729,7 +729,7 @@ CONFIG_INTERPRETERS_PCODE=y
# CONFIG_SYSTEM_HEX2BIN is not set # CONFIG_SYSTEM_HEX2BIN is not set
# CONFIG_SYSTEM_HEXED is not set # CONFIG_SYSTEM_HEXED is not set
# CONFIG_SYSTEM_INSTALL is not set # CONFIG_SYSTEM_INSTALL is not set
CONFIG_SYSTEM_PRUN=y CONFIG_SYSTEM_PRUN=y
# CONFIG_SYSTEM_RAMTEST is not set # CONFIG_SYSTEM_RAMTEST is not set
# CONFIG_READLINE_HAVE_EXTMATCH is not set # CONFIG_READLINE_HAVE_EXTMATCH is not set
# CONFIG_SYSTEM_READLINE is not set # CONFIG_SYSTEM_READLINE is not set