From: Piotr Dymacz Date: Thu, 11 Aug 2016 10:40:06 +0000 (+0200) Subject: trivial: fix typo (writting -> writing) X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3a90e71d220271e690a9e3cae9dbabe8d52dc5a5;p=oweals%2Fu-boot_mod.git trivial: fix typo (writting -> writing) --- diff --git a/README.md b/README.md index 6dc6d9e..4145fcc 100644 --- a/README.md +++ b/README.md @@ -190,7 +190,7 @@ Erasing: # Erased sectors: 1 -Writting at address: 0x9F010000 +Writing at address: 0x9F010000 uboot> reset ``` @@ -251,7 +251,7 @@ Erasing: ####################################### Erased sectors: 60 Copying to FLASH... -Writting at address: 0x9F020000 +Writing at address: 0x9F020000 Done! diff --git a/READMEPL.md b/READMEPL.md index 315ef9f..d5185ab 100644 --- a/READMEPL.md +++ b/READMEPL.md @@ -181,7 +181,7 @@ Erasing: # Erased sectors: 1 -Writting at address: 0x9F010000 +Writing at address: 0x9F010000 uboot> reset ``` @@ -242,7 +242,7 @@ Erasing: ####################################### Erased sectors: 60 Copying to FLASH... -Writting at address: 0x9F020000 +Writing at address: 0x9F020000 Done! diff --git a/u-boot/board/ar7240/common/spi_flash.c b/u-boot/board/ar7240/common/spi_flash.c index 773ab90..21954db 100644 --- a/u-boot/board/ar7240/common/spi_flash.c +++ b/u-boot/board/ar7240/common/spi_flash.c @@ -171,7 +171,7 @@ u32 write_buff(flash_info_t *info, uchar *source, ulong addr, ulong len) u32 dst; u8 *src; - printf("Writting at address: 0x%08lX\n", addr); + printf("Writing at address: 0x%08lX\n", addr); addr = addr - CFG_FLASH_BASE; while (total < len) {