summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorEugeniu Rosca <erosca@de.adit-jv.com>2019-04-08 17:35:28 +0200
committerTom Rini <trini@konsulko.com>2019-04-24 07:27:32 -0400
commit74a7e0018a97a0e7318c4c7a3b473fd9ebbb5ad1 (patch)
tree4a8e5c2fd2dee4abed674da4ce0312af06f97bc1 /common
parent829ceb28215a1b6178bf690182def5ad56842f49 (diff)
image: android: fix 'iminfo' typo
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>
Diffstat (limited to 'common')
-rw-r--r--common/image-android.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/image-android.c b/common/image-android.c
index c31dcd4465..8b0f6b3b8b 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);