public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH] arch: arm: Fix SZ_64K undeclared compilation error
@ 2020-02-14  5:30 Wasim Khan
  2020-02-18 10:48 ` Bharat Kumar Reddy
  2020-02-25 19:00 ` Tom Rini
  0 siblings, 2 replies; 5+ messages in thread
From: Wasim Khan @ 2020-02-14  5:30 UTC (permalink / raw)
  To: u-boot

Macro SZ_64K is undeclared. Include sizes.h to fix the compilation
error.

Signed-off-by: Wasim Khan <wasim.khan@nxp.com>
---
 arch/arm/lib/gic-v3-its.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/lib/gic-v3-its.c b/arch/arm/lib/gic-v3-its.c
index e19ab01..6ee22d2 100644
--- a/arch/arm/lib/gic-v3-its.c
+++ b/arch/arm/lib/gic-v3-its.c
@@ -6,6 +6,7 @@
 #include <asm/gic.h>
 #include <asm/gic-v3.h>
 #include <asm/io.h>
+#include <linux/sizes.h>
 
 static u32 lpi_id_bits;
 
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH] arch: arm: Fix SZ_64K undeclared compilation error
  2020-02-14  5:30 [PATCH] arch: arm: Fix SZ_64K undeclared compilation error Wasim Khan
@ 2020-02-18 10:48 ` Bharat Kumar Reddy
  2020-02-19  7:03   ` Priyanka Jain
  2020-02-25 19:00 ` Tom Rini
  1 sibling, 1 reply; 5+ messages in thread
From: Bharat Kumar Reddy @ 2020-02-18 10:48 UTC (permalink / raw)
  To: u-boot

Looks good to me.

On 14/02/20 11:00 am, Wasim Khan wrote:
> Macro SZ_64K is undeclared. Include sizes.h to fix the compilation
> error.
>
> Signed-off-by: Wasim Khan <wasim.khan@nxp.com>
> ---
>   arch/arm/lib/gic-v3-its.c | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/arch/arm/lib/gic-v3-its.c b/arch/arm/lib/gic-v3-its.c
> index e19ab01..6ee22d2 100644
> --- a/arch/arm/lib/gic-v3-its.c
> +++ b/arch/arm/lib/gic-v3-its.c
> @@ -6,6 +6,7 @@
>   #include <asm/gic.h>
>   #include <asm/gic-v3.h>
>   #include <asm/io.h>
> +#include <linux/sizes.h>
>   
>   static u32 lpi_id_bits;
>   

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] arch: arm: Fix SZ_64K undeclared compilation error
  2020-02-18 10:48 ` Bharat Kumar Reddy
@ 2020-02-19  7:03   ` Priyanka Jain
  2020-02-19 12:21     ` Tom Rini
  0 siblings, 1 reply; 5+ messages in thread
From: Priyanka Jain @ 2020-02-19  7:03 UTC (permalink / raw)
  To: u-boot

>-----Original Message-----
>From: U-Boot <u-boot-bounces@lists.denx.de> On Behalf Of Bharat Kumar
>Reddy
>Sent: Tuesday, February 18, 2020 4:19 PM
>To: Wasim Khan <wasim.khan@nxp.com>; Priyanka Jain
><priyanka.jain@nxp.com>; vladimir.olovyannikov at broadcom.com
>Cc: u-boot at lists.denx.de
>Subject: Re: [PATCH] arch: arm: Fix SZ_64K undeclared compilation error
>
>Looks good to me.
>
>On 14/02/20 11:00 am, Wasim Khan wrote:
>> Macro SZ_64K is undeclared. Include sizes.h to fix the compilation
>> error.
>>
>> Signed-off-by: Wasim Khan <wasim.khan@nxp.com>
>> ---
>>   arch/arm/lib/gic-v3-its.c | 1 +
>>   1 file changed, 1 insertion(+)
>>
>> diff --git a/arch/arm/lib/gic-v3-its.c b/arch/arm/lib/gic-v3-its.c
>> index e19ab01..6ee22d2 100644
>> --- a/arch/arm/lib/gic-v3-its.c
>> +++ b/arch/arm/lib/gic-v3-its.c
>> @@ -6,6 +6,7 @@
>>   #include <asm/gic.h>
>>   #include <asm/gic-v3.h>
>>   #include <asm/io.h>
>> +#include <linux/sizes.h>
>>
>>   static u32 lpi_id_bits;
>>
Tom,
Some of patches in my backlog are dependent on this. Can you please apply this fix.

Thanks
priyankajain

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] arch: arm: Fix SZ_64K undeclared compilation error
  2020-02-19  7:03   ` Priyanka Jain
@ 2020-02-19 12:21     ` Tom Rini
  0 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2020-02-19 12:21 UTC (permalink / raw)
  To: u-boot

On Wed, Feb 19, 2020 at 07:03:26AM +0000, Priyanka Jain (OSS) wrote:
> >-----Original Message-----
> >From: U-Boot <u-boot-bounces@lists.denx.de> On Behalf Of Bharat Kumar
> >Reddy
> >Sent: Tuesday, February 18, 2020 4:19 PM
> >To: Wasim Khan <wasim.khan@nxp.com>; Priyanka Jain
> ><priyanka.jain@nxp.com>; vladimir.olovyannikov at broadcom.com
> >Cc: u-boot at lists.denx.de
> >Subject: Re: [PATCH] arch: arm: Fix SZ_64K undeclared compilation error
> >
> >Looks good to me.
> >
> >On 14/02/20 11:00 am, Wasim Khan wrote:
> >> Macro SZ_64K is undeclared. Include sizes.h to fix the compilation
> >> error.
> >>
> >> Signed-off-by: Wasim Khan <wasim.khan@nxp.com>
> >> ---
> >>   arch/arm/lib/gic-v3-its.c | 1 +
> >>   1 file changed, 1 insertion(+)
> >>
> >> diff --git a/arch/arm/lib/gic-v3-its.c b/arch/arm/lib/gic-v3-its.c
> >> index e19ab01..6ee22d2 100644
> >> --- a/arch/arm/lib/gic-v3-its.c
> >> +++ b/arch/arm/lib/gic-v3-its.c
> >> @@ -6,6 +6,7 @@
> >>   #include <asm/gic.h>
> >>   #include <asm/gic-v3.h>
> >>   #include <asm/io.h>
> >> +#include <linux/sizes.h>
> >>
> >>   static u32 lpi_id_bits;
> >>
> Tom,
> Some of patches in my backlog are dependent on this. Can you please apply this fix.

Reviewed-by: Tom Rini <trini@konsulko.com>

Please just pick it up, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 659 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20200219/d4b244df/attachment.sig>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] arch: arm: Fix SZ_64K undeclared compilation error
  2020-02-14  5:30 [PATCH] arch: arm: Fix SZ_64K undeclared compilation error Wasim Khan
  2020-02-18 10:48 ` Bharat Kumar Reddy
@ 2020-02-25 19:00 ` Tom Rini
  1 sibling, 0 replies; 5+ messages in thread
From: Tom Rini @ 2020-02-25 19:00 UTC (permalink / raw)
  To: u-boot

On Fri, Feb 14, 2020 at 11:00:52AM +0530, Wasim Khan wrote:

> Macro SZ_64K is undeclared. Include sizes.h to fix the compilation
> error.
> 
> Signed-off-by: Wasim Khan <wasim.khan@nxp.com>
> Reviewed-by: Tom Rini <trini@konsulko.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 659 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20200225/fe3cb18c/attachment.sig>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-02-25 19:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-14  5:30 [PATCH] arch: arm: Fix SZ_64K undeclared compilation error Wasim Khan
2020-02-18 10:48 ` Bharat Kumar Reddy
2020-02-19  7:03   ` Priyanka Jain
2020-02-19 12:21     ` Tom Rini
2020-02-25 19:00 ` Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox