summaryrefslogtreecommitdiffstats
path: root/cpukit/include/libfdt.h
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2016-09-26 18:12:26 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-07-19 07:01:09 +0200
commitf670acbf464ab408cfc48d9e9cfa6a845122dfc4 (patch)
tree885a3f13bdf3ee66a674d3a50cdd0f9045660d86 /cpukit/include/libfdt.h
parentlibfdt: simplify fdt_del_mem_rsv() (diff)
downloadrtems-f670acbf464ab408cfc48d9e9cfa6a845122dfc4.tar.bz2
Fix some typing errors in libfdt.h and livetree.c
Correct some typos discovered with the codespell utility. Signed-off-by: Thomas Huth <thuth@redhat.com> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to '')
-rw-r--r--cpukit/include/libfdt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/include/libfdt.h b/cpukit/include/libfdt.h
index 376e628150..ecb11fc9e9 100644
--- a/cpukit/include/libfdt.h
+++ b/cpukit/include/libfdt.h
@@ -61,7 +61,7 @@
#define FDT_ERR_NOTFOUND 1
/* FDT_ERR_NOTFOUND: The requested node or property does not exist */
#define FDT_ERR_EXISTS 2
- /* FDT_ERR_EXISTS: Attemped to create a node or property which
+ /* FDT_ERR_EXISTS: Attempted to create a node or property which
* already exists */
#define FDT_ERR_NOSPACE 3
/* FDT_ERR_NOSPACE: Operation needed to expand the device
@@ -700,7 +700,7 @@ const char *fdt_get_alias_namelen(const void *fdt,
const char *name, int namelen);
/**
- * fdt_get_alias - retreive the path referenced by a given alias
+ * fdt_get_alias - retrieve the path referenced by a given alias
* @fdt: pointer to the device tree blob
* @name: name of the alias th look up
*