diff mbox series

[U-Boot,2/2] image: android: fix 'iminfo' typo

Message ID 20190403213504.23681-2-erosca@de.adit-jv.com
State Superseded
Delegated to: Tom Rini
Headers show
Series [U-Boot,1/2] image: android: allow booting lz4-compressed kernels | expand

Commit Message

Eugeniu Rosca April 3, 2019, 9:35 p.m. UTC
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>
---
 common/image-android.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Marek Vasut April 4, 2019, 1:39 a.m. UTC | #1
On 4/3/19 11:35 PM, Eugeniu Rosca wrote:
> 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 | 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);
>
diff mbox series

Patch

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);