If CONFIG_OF is not defined, the following error will happen.
arch/arm/mach-omap2/prm2xxx_3xxx.c:41:11: error:
?INT_34XX_PRCM_MPU_IRQ? undeclared here (not in a function)
This is due to some hidden headers path from linux/of.h to plat/irqs.h
already reported by Russell for prm4xxx.c.
Add the #include <plat/irqs.h> in prm2xxx_3xxx.c to avoid depending
of that hidden dependency that should probably not exist in theory.
Signed-off-by: Benoit Cousson <redacted>
---
arch/arm/mach-omap2/prm2xxx_3xxx.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
From: Russell King - ARM Linux <hidden> Date: 2012-02-09 19:15:47
On Thu, Feb 09, 2012 at 08:01:09PM +0100, Cousson, Benoit wrote:
If CONFIG_OF is not defined, the following error will happen.
arch/arm/mach-omap2/prm2xxx_3xxx.c:41:11: error:
?INT_34XX_PRCM_MPU_IRQ? undeclared here (not in a function)
This is due to some hidden headers path from linux/of.h to plat/irqs.h
already reported by Russell for prm4xxx.c.
I have the following commit from mainline. I suspect you have an old
tree.
Note: for the next merge window, I'm removing the asm/irq.h include from
asm/prom.h so that this kind of thing doesn't happen in the future.
commit d19e8f2e44a34b2a461f67ce9d0cb5bd43197c1e
Author: Paul Walmsley [off-list ref]
Date: Wed Jan 25 12:57:49 2012 -0700
ARM: OMAP2/3: PRM: fix missing plat/irqs.h build breakage
Commit 22f51371f8c35869ed850f46aa76b6cc2b502110 ("ARM: OMAP3: pm: use
prcm chain handler") breaks the build on a 2420-only config, due to
a missing include for plat/irqs.h:
CC arch/arm/mach-omap2/prm2xxx_3xxx.o
arch/arm/mach-omap2/prm2xxx_3xxx.c:41:11: error: 'INT_34XX_PRCM_MPU_IRQ' undeclared here (not in a function)
Fix by explicitly including it.
Signed-off-by: Paul Walmsley [off-list ref]
Cc: Tero Kristo [off-list ref]
Cc: Kevin Hilman [off-list ref]
On 2/9/2012 8:15 PM, Russell King - ARM Linux wrote:
On Thu, Feb 09, 2012 at 08:01:09PM +0100, Cousson, Benoit wrote:
quoted
If CONFIG_OF is not defined, the following error will happen.
arch/arm/mach-omap2/prm2xxx_3xxx.c:41:11: error:
?INT_34XX_PRCM_MPU_IRQ? undeclared here (not in a function)
This is due to some hidden headers path from linux/of.h to plat/irqs.h
already reported by Russell for prm4xxx.c.
I have the following commit from mainline. I suspect you have an old
tree.
OK, it was part of the fixes Tony sent for for v3.3-rc2 but that are
were not in mainline until now.
I've just pulled -rc3 and this is indeed there.
Thanks,
Benoit
quoted hunk
Note: for the next merge window, I'm removing the asm/irq.h include from
asm/prom.h so that this kind of thing doesn't happen in the future.
commit d19e8f2e44a34b2a461f67ce9d0cb5bd43197c1e
Author: Paul Walmsley[off-list ref]
Date: Wed Jan 25 12:57:49 2012 -0700
ARM: OMAP2/3: PRM: fix missing plat/irqs.h build breakage
Commit 22f51371f8c35869ed850f46aa76b6cc2b502110 ("ARM: OMAP3: pm: use
prcm chain handler") breaks the build on a 2420-only config, due to
a missing include for plat/irqs.h:
CC arch/arm/mach-omap2/prm2xxx_3xxx.o
arch/arm/mach-omap2/prm2xxx_3xxx.c:41:11: error: 'INT_34XX_PRCM_MPU_IRQ' undeclared here (not in a function)
Fix by explicitly including it.
Signed-off-by: Paul Walmsley[off-list ref]
Cc: Tero Kristo[off-list ref]
Cc: Kevin Hilman[off-list ref]