aboutsummaryrefslogtreecommitdiff
path: root/romfs
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2023-03-06 13:49:27 +0100
committerAlexey Kardashevskiy <aik@ozlabs.ru>2023-03-28 18:53:23 +1100
commitadc561044f17d21c4d164cbe07068a3851450f8f (patch)
tree0074618444d341247e5e7350d830975c672d45b0 /romfs
parente8124ca96e34f702fbbf60925461a5f9857b46a1 (diff)
downloadSLOF-adc561044f17d21c4d164cbe07068a3851450f8f.zip
SLOF-adc561044f17d21c4d164cbe07068a3851450f8f.tar.gz
SLOF-adc561044f17d21c4d164cbe07068a3851450f8f.tar.bz2
Fix remaining typos in various folders
Found with the "codespell" utility Signed-off-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Diffstat (limited to 'romfs')
-rw-r--r--romfs/tools/crclib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/romfs/tools/crclib.c b/romfs/tools/crclib.c
index b8a66e3..7584a65 100644
--- a/romfs/tools/crclib.c
+++ b/romfs/tools/crclib.c
@@ -17,7 +17,7 @@
uint64_t ui64Generator1;
/**
- * calculate standart ethernet 32 bit CRC
+ * calculate standard ethernet 32 bit CRC
* generator polynome is 0x104C11DB7
* this algorithm can be used for encoding and decoding
*/
@@ -205,7 +205,7 @@ calCRCword(unsigned char *cPtr, uint32_t ui32NoWords, uint64_t AccumCRC)
createCRCParameter(&ui64Mask, &uiRegisterLength);
if ((ui32NoWords % 2) != 0) {
- /* if Data string does not end at word boundery add one byte */
+ /* if Data string does not end at word boundary add one byte */
ui32NoWords++;
cPtr[ui32NoWords] = 0;
}