diff mbox series

[U-Boot,v2,2/2] image: android: fix 'iminfo' typo

Message ID 20190408153528.23783-2-erosca@de.adit-jv.com
State Accepted
Delegated to: Tom Rini
Headers show
Series [U-Boot,v2,1/2] image: android: allow booting lz4-compressed kernels | expand

Commit Message

Eugeniu Rosca April 8, 2019, 3:35 p.m. UTC
Fix below CP warning triggered by the 'iminfo' output in another patch:
WARNING: 'addrress' may be misspelled - perhaps 'address'?

Fixes: 4f1318b29c7a20 ("common: image: minimal android image iminfo support")
Signed-off-by: Eugeniu Rosca <erosca@de.adit-jv.com>
Acked-by: Marek Vasut <marek.vasut@gmail.com>
---
v2:
 - Added 'Acked-by: Marek Vasut <marek.vasut@gmail.com>'
 - No changes in the code
v1:
 - https://patchwork.ozlabs.org/patch/1076478/
---
 common/image-android.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Tom Rini April 24, 2019, 1:31 p.m. UTC | #1
On Mon, Apr 08, 2019 at 05:35:28PM +0200, Eugeniu Rosca wrote:

> Fix below CP warning triggered by the 'iminfo' output in another patch:
> WARNING: 'addrress' may be misspelled - perhaps 'address'?
> 
> Fixes: 4f1318b29c7a20 ("common: image: minimal android image iminfo support")
> Signed-off-by: Eugeniu Rosca <erosca@de.adit-jv.com>
> Acked-by: Marek Vasut <marek.vasut@gmail.com>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/common/image-android.c b/common/image-android.c
index c31dcd446526..8b0f6b3b8bab 100644
--- a/common/image-android.c
+++ b/common/image-android.c
@@ -197,7 +197,7 @@  void android_print_contents(const struct andr_img_hdr *hdr)
 	printf("%skernel size:      %x\n", p, hdr->kernel_size);
 	printf("%skernel address:   %x\n", p, hdr->kernel_addr);
 	printf("%sramdisk size:     %x\n", p, hdr->ramdisk_size);
-	printf("%sramdisk addrress: %x\n", p, hdr->ramdisk_addr);
+	printf("%sramdisk address:  %x\n", p, hdr->ramdisk_addr);
 	printf("%ssecond size:      %x\n", p, hdr->second_size);
 	printf("%ssecond address:   %x\n", p, hdr->second_addr);
 	printf("%stags address:     %x\n", p, hdr->tags_addr);