All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: mxc: Include missing irqs.h header
@ 2012-07-23  7:41 Fabio Estevam
  2012-07-27  9:02 ` Dirk Behme
  2012-07-28 11:14 ` Shawn Guo
  0 siblings, 2 replies; 6+ messages in thread
From: Fabio Estevam @ 2012-07-23  7:41 UTC (permalink / raw)
  To: linux-arm-kernel

From: Fabio Estevam <fabio.estevam@freescale.com>

Include irqs.h in order to fix the following build error:

arch/arm/plat-mxc/tzic.c:195:11: error: 'FIQ_START' undeclared (first use in this function)

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 arch/arm/plat-mxc/tzic.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/arch/arm/plat-mxc/tzic.c b/arch/arm/plat-mxc/tzic.c
index c219317..3ed1adb 100644
--- a/arch/arm/plat-mxc/tzic.c
+++ b/arch/arm/plat-mxc/tzic.c
@@ -23,6 +23,7 @@
 
 #include <mach/hardware.h>
 #include <mach/common.h>
+#include <mach/irqs.h>
 
 #include "irq-common.h"
 
-- 
1.7.1

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

* [PATCH] ARM: mxc: Include missing irqs.h header
  2012-07-23  7:41 [PATCH] ARM: mxc: Include missing irqs.h header Fabio Estevam
@ 2012-07-27  9:02 ` Dirk Behme
  2012-07-27 10:11   ` Fabio Estevam
  2012-07-28 11:14 ` Shawn Guo
  1 sibling, 1 reply; 6+ messages in thread
From: Dirk Behme @ 2012-07-27  9:02 UTC (permalink / raw)
  To: linux-arm-kernel

On 23.07.2012 09:41, Fabio Estevam wrote:
> From: Fabio Estevam <fabio.estevam@freescale.com>
> 
> Include irqs.h in order to fix the following build error:
> 
> arch/arm/plat-mxc/tzic.c:195:11: error: 'FIQ_START' undeclared (first use in this function)
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>

Acked-by: Dirk Behme <dirk.behme@de.bosch.com>

Could we make sure that this patch goes into mainline asap?

Recent mainline imx_v6_v7_defconfig doesn't build without this patch.

Many thanks and best regards

Dirk

P.S.: It seems that Shawn is on holiday. Could anybody help?

> ---
>  arch/arm/plat-mxc/tzic.c |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/arm/plat-mxc/tzic.c b/arch/arm/plat-mxc/tzic.c
> index c219317..3ed1adb 100644
> --- a/arch/arm/plat-mxc/tzic.c
> +++ b/arch/arm/plat-mxc/tzic.c
> @@ -23,6 +23,7 @@
>  
>  #include <mach/hardware.h>
>  #include <mach/common.h>
> +#include <mach/irqs.h>
>  
>  #include "irq-common.h"
>  

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

* [PATCH] ARM: mxc: Include missing irqs.h header
  2012-07-27  9:02 ` Dirk Behme
@ 2012-07-27 10:11   ` Fabio Estevam
  0 siblings, 0 replies; 6+ messages in thread
From: Fabio Estevam @ 2012-07-27 10:11 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Sascha,

On Fri, Jul 27, 2012 at 6:02 AM, Dirk Behme <dirk.behme@de.bosch.com> wrote:

> P.S.: It seems that Shawn is on holiday. Could anybody help?

Could you please help to apply this patch?

Thanks,

Fabio Estevam

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

* [PATCH] ARM: mxc: Include missing irqs.h header
  2012-07-23  7:41 [PATCH] ARM: mxc: Include missing irqs.h header Fabio Estevam
  2012-07-27  9:02 ` Dirk Behme
@ 2012-07-28 11:14 ` Shawn Guo
  2012-07-28 15:44   ` Shawn Guo
  1 sibling, 1 reply; 6+ messages in thread
From: Shawn Guo @ 2012-07-28 11:14 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Jul 23, 2012 at 04:41:18AM -0300, Fabio Estevam wrote:
> From: Fabio Estevam <fabio.estevam@freescale.com>
> 
> Include irqs.h in order to fix the following build error:
> 
> arch/arm/plat-mxc/tzic.c:195:11: error: 'FIQ_START' undeclared (first use in this function)
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>

Thanks for the patch.  Will send it to arm-soc shortly.

Regards,
Shawn

> ---
>  arch/arm/plat-mxc/tzic.c |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/arm/plat-mxc/tzic.c b/arch/arm/plat-mxc/tzic.c
> index c219317..3ed1adb 100644
> --- a/arch/arm/plat-mxc/tzic.c
> +++ b/arch/arm/plat-mxc/tzic.c
> @@ -23,6 +23,7 @@
>  
>  #include <mach/hardware.h>
>  #include <mach/common.h>
> +#include <mach/irqs.h>
>  
>  #include "irq-common.h"
>  
> -- 
> 1.7.1
> 

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

* [PATCH] ARM: mxc: Include missing irqs.h header
  2012-07-28 11:14 ` Shawn Guo
@ 2012-07-28 15:44   ` Shawn Guo
  2012-07-28 21:27     ` Olof Johansson
  0 siblings, 1 reply; 6+ messages in thread
From: Shawn Guo @ 2012-07-28 15:44 UTC (permalink / raw)
  To: linux-arm-kernel

On Sat, Jul 28, 2012 at 07:14:24PM +0800, Shawn Guo wrote:
> On Mon, Jul 23, 2012 at 04:41:18AM -0300, Fabio Estevam wrote:
> > From: Fabio Estevam <fabio.estevam@freescale.com>
> > 
> > Include irqs.h in order to fix the following build error:
> > 
> > arch/arm/plat-mxc/tzic.c:195:11: error: 'FIQ_START' undeclared (first use in this function)
> > 
> > Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> 
> Thanks for the patch.  Will send it to arm-soc shortly.
> 
Olof,

I just noticed you had sent the first batch fixes for merge window
fallout.  Unfortunately, this is another one.  Will there be a second
batch fixes targeting -rc1?  If so, please help pick up this one,
otherwise, I will queue it for later -rc.

-- 
Regards,
Shawn

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

* [PATCH] ARM: mxc: Include missing irqs.h header
  2012-07-28 15:44   ` Shawn Guo
@ 2012-07-28 21:27     ` Olof Johansson
  0 siblings, 0 replies; 6+ messages in thread
From: Olof Johansson @ 2012-07-28 21:27 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

On Sat, Jul 28, 2012 at 8:44 AM, Shawn Guo <shawn.guo@linaro.org> wrote:
> On Sat, Jul 28, 2012 at 07:14:24PM +0800, Shawn Guo wrote:
>> On Mon, Jul 23, 2012 at 04:41:18AM -0300, Fabio Estevam wrote:
>> > From: Fabio Estevam <fabio.estevam@freescale.com>
>> >
>> > Include irqs.h in order to fix the following build error:
>> >
>> > arch/arm/plat-mxc/tzic.c:195:11: error: 'FIQ_START' undeclared (first use in this function)
>> >
>> > Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
>>
>> Thanks for the patch.  Will send it to arm-soc shortly.
>>
> Olof,
>
> I just noticed you had sent the first batch fixes for merge window
> fallout.  Unfortunately, this is another one.  Will there be a second
> batch fixes targeting -rc1?  If so, please help pick up this one,
> otherwise, I will queue it for later -rc.

Applied to fixes, so it'll make it in the next batch whenever it is.
Likely before -rc1.


-Olof

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

end of thread, other threads:[~2012-07-28 21:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-23  7:41 [PATCH] ARM: mxc: Include missing irqs.h header Fabio Estevam
2012-07-27  9:02 ` Dirk Behme
2012-07-27 10:11   ` Fabio Estevam
2012-07-28 11:14 ` Shawn Guo
2012-07-28 15:44   ` Shawn Guo
2012-07-28 21:27     ` Olof Johansson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.