Run codespell -w with the latest dictonary again

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao
2020-02-23 16:50:23 +08:00
committed by Abdelatif Guettouche
parent 55a7dfc9a7
commit cde88cabcc
1532 changed files with 3117 additions and 3117 deletions
+1 -1
View File
@@ -97,7 +97,7 @@ int dump_module(FAR const struct binary_s *bin);
*
* Description:
* In the kernel build, the argv list will likely lie in the caller's
* address environment and, hence, by inaccessible when we swith to the
* address environment and, hence, by inaccessible when we switch to the
* address environment of the new process address environment. So we
* do not have any real option other than to copy the callers argv[] list.
*
+1 -1
View File
@@ -78,7 +78,7 @@
* argv - Argument list
*
* Returned Value:
* Zero (OK) on success; a negated erro value on failure.
* Zero (OK) on success; a negated error value on failure.
*
****************************************************************************/
+1 -1
View File
@@ -136,7 +136,7 @@ int elf_findsymtab(FAR struct elf_loadinfo_s *loadinfo);
* Name: elf_readsym
*
* Description:
* Read the ELF symbol structure at the specfied index into memory.
* Read the ELF symbol structure at the specified index into memory.
*
* Input Parameters:
* loadinfo - Load state information
+1 -1
View File
@@ -204,7 +204,7 @@ int elf_loadshdrs(FAR struct elf_loadinfo_s *loadinfo)
shdrsize = (size_t)loadinfo->ehdr.e_shentsize * (size_t)loadinfo->ehdr.e_shnum;
if (loadinfo->ehdr.e_shoff + shdrsize > loadinfo->filelen)
{
berr("Insufficent space in file for section header table\n");
berr("Insufficient space in file for section header table\n");
return -ESPIPE;
}
+1 -1
View File
@@ -79,7 +79,7 @@ int nxflat_addrenv_alloc(FAR struct nxflat_loadinfo_s *loadinfo, size_t envsize)
* Name: nxflat_addrenv_select
*
* Description:
* Temporarity select the task's address environemnt.
* Temporarity select the task's address environment.
*
* Input Parameters:
* loadinfo - Load state information
+1 -1
View File
@@ -198,7 +198,7 @@ static int nxflat_loadbinary(FAR struct binary_s *binp)
binp->stacksize = loadinfo.stacksize;
/* Add the ELF allocation to the alloc[] only if there is no address
* enironment. If there is an address environment, it will automatically
* environment. If there is an address environment, it will automatically
* be freed when the function exits
*
* REVISIT: If the module is loaded then unloaded, wouldn't this cause