* [PATCH] arm:gemini: fix irq.c
@ 2012-06-06 11:22 Andreas Bießmann
2012-06-29 20:44 ` Andreas Bießmann
0 siblings, 1 reply; 3+ messages in thread
From: Andreas Bießmann @ 2012-06-06 11:22 UTC (permalink / raw)
To: linux-arm-kernel
Commit 9f97da78bf018206fb623cd351d454af2f105fe0 moved disable_hlt() from
arch/arm/include/asm/system.h to arch/arm/include/asm/system_misc.h but missed
to change arch/arm/mach-gemini/irq.c.
This patch fixes following error:
---8<---
arch/arm/mach-gemini/irq.c: In function 'gemini_init_irq':
arch/arm/mach-gemini/irq.c:79:2: error: implicit declaration of function 'disable_hlt' [-Werror=implicit-function-declaration]
--->8---
Signed-off-by: Andreas Bie?mann <andreas@biessmann.de>
cc: Hans Ulli Kroll <ulli.kroll@googlemail.com>
cc: Russell King <linux@arm.linux.org.uk>
cc: linux-arm-kernel at lists.infradead.org
---
Note: this is broken since 3.4 release, 3.3 is sane.
arch/arm/mach-gemini/irq.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm/mach-gemini/irq.c b/arch/arm/mach-gemini/irq.c
index ca70e5f..020852d 100644
--- a/arch/arm/mach-gemini/irq.c
+++ b/arch/arm/mach-gemini/irq.c
@@ -17,6 +17,7 @@
#include <linux/sched.h>
#include <asm/irq.h>
#include <asm/mach/irq.h>
+#include <asm/system_misc.h>
#include <mach/hardware.h>
#define IRQ_SOURCE(base_addr) (base_addr + 0x00)
--
1.7.10
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH] arm:gemini: fix irq.c
2012-06-06 11:22 [PATCH] arm:gemini: fix irq.c Andreas Bießmann
@ 2012-06-29 20:44 ` Andreas Bießmann
2012-08-01 7:33 ` Andreas Bießmann
0 siblings, 1 reply; 3+ messages in thread
From: Andreas Bießmann @ 2012-06-29 20:44 UTC (permalink / raw)
To: linux-arm-kernel
On 06.06.12 13:22, Andreas Bie?mann wrote:
> Commit 9f97da78bf018206fb623cd351d454af2f105fe0 moved disable_hlt() from
> arch/arm/include/asm/system.h to arch/arm/include/asm/system_misc.h but missed
> to change arch/arm/mach-gemini/irq.c.
>
> This patch fixes following error:
>
> ---8<---
> arch/arm/mach-gemini/irq.c: In function 'gemini_init_irq':
> arch/arm/mach-gemini/irq.c:79:2: error: implicit declaration of function 'disable_hlt' [-Werror=implicit-function-declaration]
> --->8---
>
> Signed-off-by: Andreas Bie?mann <andreas@biessmann.de>
> cc: Hans Ulli Kroll <ulli.kroll@googlemail.com>
> cc: Russell King <linux@arm.linux.org.uk>
> cc: linux-arm-kernel at lists.infradead.org
> ---
> Note: this is broken since 3.4 release, 3.3 is sane.
ping
>
> arch/arm/mach-gemini/irq.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/arch/arm/mach-gemini/irq.c b/arch/arm/mach-gemini/irq.c
> index ca70e5f..020852d 100644
> --- a/arch/arm/mach-gemini/irq.c
> +++ b/arch/arm/mach-gemini/irq.c
> @@ -17,6 +17,7 @@
> #include <linux/sched.h>
> #include <asm/irq.h>
> #include <asm/mach/irq.h>
> +#include <asm/system_misc.h>
> #include <mach/hardware.h>
>
> #define IRQ_SOURCE(base_addr) (base_addr + 0x00)
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] arm:gemini: fix irq.c
2012-06-29 20:44 ` Andreas Bießmann
@ 2012-08-01 7:33 ` Andreas Bießmann
0 siblings, 0 replies; 3+ messages in thread
From: Andreas Bießmann @ 2012-08-01 7:33 UTC (permalink / raw)
To: linux-arm-kernel
ping
On 29.06.12 22:44, Andreas Bie?mann wrote:
> On 06.06.12 13:22, Andreas Bie?mann wrote:
>> Commit 9f97da78bf018206fb623cd351d454af2f105fe0 moved disable_hlt() from
>> arch/arm/include/asm/system.h to arch/arm/include/asm/system_misc.h but missed
>> to change arch/arm/mach-gemini/irq.c.
>>
>> This patch fixes following error:
>>
>> ---8<---
>> arch/arm/mach-gemini/irq.c: In function 'gemini_init_irq':
>> arch/arm/mach-gemini/irq.c:79:2: error: implicit declaration of function 'disable_hlt' [-Werror=implicit-function-declaration]
>> --->8---
>>
>> Signed-off-by: Andreas Bie?mann <andreas@biessmann.de>
>> cc: Hans Ulli Kroll <ulli.kroll@googlemail.com>
>> cc: Russell King <linux@arm.linux.org.uk>
>> cc: linux-arm-kernel at lists.infradead.org
>> ---
>> Note: this is broken since 3.4 release, 3.3 is sane.
>
> ping
>
>>
>> arch/arm/mach-gemini/irq.c | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/arch/arm/mach-gemini/irq.c b/arch/arm/mach-gemini/irq.c
>> index ca70e5f..020852d 100644
>> --- a/arch/arm/mach-gemini/irq.c
>> +++ b/arch/arm/mach-gemini/irq.c
>> @@ -17,6 +17,7 @@
>> #include <linux/sched.h>
>> #include <asm/irq.h>
>> #include <asm/mach/irq.h>
>> +#include <asm/system_misc.h>
>> #include <mach/hardware.h>
>>
>> #define IRQ_SOURCE(base_addr) (base_addr + 0x00)
>>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-08-01 7:33 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-06 11:22 [PATCH] arm:gemini: fix irq.c Andreas Bießmann
2012-06-29 20:44 ` Andreas Bießmann
2012-08-01 7:33 ` Andreas Bießmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).