mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-24 06:24:17 +00:00
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: 4f1318b29c
("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>
This commit is contained in:
parent
829ceb2821
commit
74a7e0018a
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue