Elyes HAOUAS has uploaded this change for review. ( https://review.coreboot.org/27913
Change subject: src/lib: Fix typo ......................................................................
src/lib: Fix typo
Change-Id: Ie5bf036a63a254dd95b45a0823086c8079eeafe2 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/lib/device_tree.c M src/lib/region_file.c 2 files changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/13/27913/1
diff --git a/src/lib/device_tree.c b/src/lib/device_tree.c index 00b36fd..a905dbf 100644 --- a/src/lib/device_tree.c +++ b/src/lib/device_tree.c @@ -751,7 +751,7 @@ * Write an arbitrary sized big-endian integer into a pointer. * * @param dest Pointer to the DT property data buffer to write. - * @param src The integer to write (in CPU endianess). + * @param src The integer to write (in CPU endianness). * @param length the length of the destination integer in bytes. */ void dt_write_int(u8 *dest, u64 src, size_t length) diff --git a/src/lib/region_file.c b/src/lib/region_file.c index 9d103f2..e42c2af 100644 --- a/src/lib/region_file.c +++ b/src/lib/region_file.c @@ -465,7 +465,7 @@ break; }
- /* No more state changes and data commited. */ + /* No more state changes and data committed. */ if (f->slot > RF_ONLY_METADATA && prev_slot != f->slot) break; }