summaryrefslogtreecommitdiff
path: root/lib/libfdt
diff options
context:
space:
mode:
authorMaxime Ripard <maxime.ripard@free-electrons.com>2016-07-05 08:26:40 (GMT)
committerTom Rini <trini@konsulko.com>2016-08-20 15:35:02 (GMT)
commit6f5f92c60b7cc86bcfbd4acd310c5efbb6b68a8f (patch)
treea7d4ec7908dd51100df371efd32175d492542c7e /lib/libfdt
parent57c7809ab0452bb9dc29c383fe64b651c911e1d2 (diff)
downloadu-boot-6f5f92c60b7cc86bcfbd4acd310c5efbb6b68a8f.tar.xz
libfdt: Fix separator spelling
The function fdt_path_next_seperator had an obvious mispell. Fix it. Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Diffstat (limited to 'lib/libfdt')
-rw-r--r--lib/libfdt/fdt_ro.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libfdt/fdt_ro.c b/lib/libfdt/fdt_ro.c
index 503150e..6b737b2 100644
--- a/lib/libfdt/fdt_ro.c
+++ b/lib/libfdt/fdt_ro.c
@@ -140,12 +140,12 @@ int fdt_subnode_offset(const void *fdt, int parentoffset,
}
/*
- * Find the next of path seperator, note we need to search for both '/' and ':'
+ * Find the next of path separator, note we need to search for both '/' and ':'
* and then take the first one so that we do the right thing for e.g.
* "foo/bar:option" and "bar:option/otheroption", both of which happen, so
* first searching for either ':' or '/' does not work.
*/
-static const char *fdt_path_next_seperator(const char *path)
+static const char *fdt_path_next_separator(const char *path)
{
const char *sep1 = strchr(path, '/');
const char *sep2 = strchr(path, ':');
@@ -168,7 +168,7 @@ int fdt_path_offset(const void *fdt, const char *path)
/* see if we have an alias */
if (*path != '/') {
- const char *q = fdt_path_next_seperator(path);
+ const char *q = fdt_path_next_separator(path);
if (!q)
q = end;
@@ -188,7 +188,7 @@ int fdt_path_offset(const void *fdt, const char *path)
p++;
if (*p == '\0' || *p == ':')
return offset;
- q = fdt_path_next_seperator(p);
+ q = fdt_path_next_separator(p);
if (!q)
q = end;