[U-Boot] [PATCH 2/2] image: android: fix 'iminfo' typo
Eugeniu Rosca
erosca at de.adit-jv.com
Wed Apr 3 21:35:04 UTC 2019
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 at de.adit-jv.com>
---
common/image-android.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/common/image-android.c b/common/image-android.c
index eec8c4decdbd..3e9afd4dcfa8 100644
--- a/common/image-android.c
+++ b/common/image-android.c
@@ -200,7 +200,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);
--
2.21.0
More information about the U-Boot
mailing list