Cortex-A address environment: Fix some section mapping and address increments

This commit is contained in:
Gregory Nutt
2014-08-26 06:33:26 -06:00
parent e87804cc8c
commit 66a5328a68
3 changed files with 34 additions and 31 deletions

View File

@@ -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;
}