diff options
author | Eugeniu Rosca <erosca@de.adit-jv.com> | 2019-04-08 17:35:28 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-04-24 07:27:32 -0400 |
commit | 74a7e0018a97a0e7318c4c7a3b473fd9ebbb5ad1 (patch) | |
tree | 4a8e5c2fd2dee4abed674da4ce0312af06f97bc1 /common | |
parent | 829ceb28215a1b6178bf690182def5ad56842f49 (diff) | |
download | u-boot-74a7e0018a97a0e7318c4c7a3b473fd9ebbb5ad1.zip u-boot-74a7e0018a97a0e7318c4c7a3b473fd9ebbb5ad1.tar.gz u-boot-74a7e0018a97a0e7318c4c7a3b473fd9ebbb5ad1.tar.bz2 |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/image-android.c b/common/image-android.c index c31dcd4..8b0f6b3 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); |