summaryrefslogtreecommitdiff
path: root/nuttx/binfmt
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-08-26 06:33:26 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-08-26 06:33:26 -0600
commit0945e8489a8b96acffcdaf36e1a17e4544238aa7 (patch)
tree5e31b3daf63d6bdca7c5fa08d5e712a46830a7e8 /nuttx/binfmt
parentbda92108291caded03cf62f00c7073726e4a1d3f (diff)
downloadpx4-nuttx-0945e8489a8b96acffcdaf36e1a17e4544238aa7.tar.gz
px4-nuttx-0945e8489a8b96acffcdaf36e1a17e4544238aa7.tar.bz2
px4-nuttx-0945e8489a8b96acffcdaf36e1a17e4544238aa7.zip
Cortex-A address environment: Fix some section mapping and address increments
Diffstat (limited to 'nuttx/binfmt')
-rw-r--r--nuttx/binfmt/libelf/libelf_bind.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/nuttx/binfmt/libelf/libelf_bind.c b/nuttx/binfmt/libelf/libelf_bind.c
index 4b54bd01d..d046b7a7b 100644
--- a/nuttx/binfmt/libelf/libelf_bind.c
+++ b/nuttx/binfmt/libelf/libelf_bind.c
@@ -326,7 +326,7 @@ int elf_bind(FAR struct elf_loadinfo_s *loadinfo,
#ifdef CONFIG_ARCH_HAVE_COHERENT_DCACHE
/* Ensure that the I and D caches are coherent before starting the newly
* loaded module by cleaning the D cache (i.e., flushing the D cache
- * contents to memory and invalidating the I cache.
+ * contents to memory and invalidating the I cache).
*/
up_coherent_dcache(loadinfo->textalloc, loadinfo->textsize);
@@ -334,4 +334,3 @@ int elf_bind(FAR struct elf_loadinfo_s *loadinfo,
return ret;
}
-