image: android: fix 'iminfo' typo
authorEugeniu Rosca <erosca@de.adit-jv.com>
Mon, 8 Apr 2019 15:35:28 +0000 (17:35 +0200)
committerTom Rini <trini@konsulko.com>
Wed, 24 Apr 2019 11:27:32 +0000 (07:27 -0400)
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>
common/image-android.c

index c31dcd44652628062331dd78a9276f282f1e4de4..8b0f6b3b8babe5b50578324e1dd023ad46a1185d 100644 (file)
@@ -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);