summaryrefslogtreecommitdiffstats
path: root/cpukit/dtc/libfdt
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2020-12-16 16:51:38 +1100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-12-14 16:00:44 +0100
commit0b858327821087b32d4cf11dcecb2c099f82215d (patch)
treeb17b0dea1a3ff0fd8c5f45d40ded3d5900e1c032 /cpukit/dtc/libfdt
parentlibfdt: Internally perform potentially unaligned loads (diff)
downloadrtems-0b858327821087b32d4cf11dcecb2c099f82215d.tar.bz2
libfdt: Tweak description of assume-aligned load helpers
There's a small inaccuracy in the comment describing these new helpers. This corrects it, and reformats while we're there. Fixes: f98f28ab ("libfdt: Internally perform potentially unaligned loads") Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'cpukit/dtc/libfdt')
-rw-r--r--cpukit/dtc/libfdt/libfdt_internal.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/cpukit/dtc/libfdt/libfdt_internal.h b/cpukit/dtc/libfdt/libfdt_internal.h
index 8b580aa507..16bda1906a 100644
--- a/cpukit/dtc/libfdt/libfdt_internal.h
+++ b/cpukit/dtc/libfdt/libfdt_internal.h
@@ -47,13 +47,13 @@ static inline struct fdt_reserve_entry *fdt_mem_rsv_w_(void *fdt, int n)
}
/*
- * Internal helpers to access tructural elements of the device tree blob
- * (rather than for exaple reading integers from within property values). We
- * assume that we are either given a naturally aligned address for the platform
- * or if we are not, we are on a platform where unaligned memory reads will be
- * handled in a graceful manner. If this is not the case there are _unaligned
- * versions of these functions that follow and can be used.
- *
+ * Internal helpers to access tructural elements of the device tree
+ * blob (rather than for exaple reading integers from within property
+ * values). We assume that we are either given a naturally aligned
+ * address for the platform or if we are not, we are on a platform
+ * where unaligned memory reads will be handled in a graceful manner.
+ * If not the external helpers fdtXX_ld() from libfdt.h can be used
+ * instead.
*/
static inline uint32_t fdt32_ld_(const fdt32_t *p)
{