* [PATCH 1/3] irqchip: exynos-combiner: call handle_bad_irq directly
@ 2014-01-10 2:32 Pankaj Dubey
2014-01-10 2:38 ` Pankaj Dubey
2014-01-10 16:19 ` Tomasz Figa
0 siblings, 2 replies; 5+ messages in thread
From: Pankaj Dubey @ 2014-01-10 2:32 UTC (permalink / raw)
To: linux-arm-kernel
This patch is inspired from following commit
aec0095653: (irqchip: gic: Call handle_bad_irq() directly)
Also this will help in removing unwanted inclusion
of header file "asm/mach/irq.h"
Signed-off-by: Pankaj Dubey <pankaj.dubey@samsung.com>
---
drivers/irqchip/exynos-combiner.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/irqchip/exynos-combiner.c b/drivers/irqchip/exynos-combiner.c
index 40e6440..f8636a6 100644
--- a/drivers/irqchip/exynos-combiner.c
+++ b/drivers/irqchip/exynos-combiner.c
@@ -17,7 +17,6 @@
#include <linux/irqchip/chained_irq.h>
#include <linux/of_address.h>
#include <linux/of_irq.h>
-#include <asm/mach/irq.h>
#include "irqchip.h"
@@ -81,7 +80,7 @@ static void combiner_handle_cascade_irq(unsigned int irq, struct irq_desc *desc)
cascade_irq = irq_find_mapping(combiner_irq_domain, combiner_irq);
if (unlikely(!cascade_irq))
- do_bad_IRQ(irq, desc);
+ handle_bad_irq(irq, desc);
else
generic_handle_irq(cascade_irq);
--
1.7.10.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 1/3] irqchip: exynos-combiner: call handle_bad_irq directly
2014-01-10 2:32 [PATCH 1/3] irqchip: exynos-combiner: call handle_bad_irq directly Pankaj Dubey
@ 2014-01-10 2:38 ` Pankaj Dubey
2014-01-10 16:19 ` Tomasz Figa
1 sibling, 0 replies; 5+ messages in thread
From: Pankaj Dubey @ 2014-01-10 2:38 UTC (permalink / raw)
To: linux-arm-kernel
On 01/10/2014 11:32 AM, Pankaj Dubey wrote:
> This patch is inspired from following commit
> aec0095653: (irqchip: gic: Call handle_bad_irq() directly)
>
> Also this will help in removing unwanted inclusion
> of header file "asm/mach/irq.h"
>
> Signed-off-by: Pankaj Dubey <pankaj.dubey@samsung.com>
This is single patch only. By mistake sent as Patch[1/3].
> ---
> drivers/irqchip/exynos-combiner.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/irqchip/exynos-combiner.c b/drivers/irqchip/exynos-combiner.c
> index 40e6440..f8636a6 100644
> --- a/drivers/irqchip/exynos-combiner.c
> +++ b/drivers/irqchip/exynos-combiner.c
> @@ -17,7 +17,6 @@
> #include <linux/irqchip/chained_irq.h>
> #include <linux/of_address.h>
> #include <linux/of_irq.h>
> -#include <asm/mach/irq.h>
>
> #include "irqchip.h"
>
> @@ -81,7 +80,7 @@ static void combiner_handle_cascade_irq(unsigned int irq, struct irq_desc *desc)
> cascade_irq = irq_find_mapping(combiner_irq_domain, combiner_irq);
>
> if (unlikely(!cascade_irq))
> - do_bad_IRQ(irq, desc);
> + handle_bad_irq(irq, desc);
> else
> generic_handle_irq(cascade_irq);
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/3] irqchip: exynos-combiner: call handle_bad_irq directly
2014-01-10 2:32 [PATCH 1/3] irqchip: exynos-combiner: call handle_bad_irq directly Pankaj Dubey
2014-01-10 2:38 ` Pankaj Dubey
@ 2014-01-10 16:19 ` Tomasz Figa
2014-02-13 8:14 ` Pankaj Dubey
2014-02-13 22:25 ` Kukjin Kim
1 sibling, 2 replies; 5+ messages in thread
From: Tomasz Figa @ 2014-01-10 16:19 UTC (permalink / raw)
To: linux-arm-kernel
Hi Pankaj,
On 10.01.2014 03:32, Pankaj Dubey wrote:
> This patch is inspired from following commit
> aec0095653: (irqchip: gic: Call handle_bad_irq() directly)
>
> Also this will help in removing unwanted inclusion
> of header file "asm/mach/irq.h"
>
> Signed-off-by: Pankaj Dubey <pankaj.dubey@samsung.com>
> ---
> drivers/irqchip/exynos-combiner.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
Reviewed-by: Tomasz Figa <t.figa@samsung.com>
Best regards,
Tomasz
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/3] irqchip: exynos-combiner: call handle_bad_irq directly
2014-01-10 16:19 ` Tomasz Figa
@ 2014-02-13 8:14 ` Pankaj Dubey
2014-02-13 22:25 ` Kukjin Kim
1 sibling, 0 replies; 5+ messages in thread
From: Pankaj Dubey @ 2014-02-13 8:14 UTC (permalink / raw)
To: linux-arm-kernel
On 01/11/2014 01:19 AM, Tomasz Figa wrote:
> Hi Pankaj,
>
> On 10.01.2014 03:32, Pankaj Dubey wrote:
>> This patch is inspired from following commit
>> aec0095653: (irqchip: gic: Call handle_bad_irq() directly)
>>
>> Also this will help in removing unwanted inclusion
>> of header file "asm/mach/irq.h"
>>
>> Signed-off-by: Pankaj Dubey <pankaj.dubey@samsung.com>
>> ---
>> drivers/irqchip/exynos-combiner.c | 3 +--
>> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> Reviewed-by: Tomasz Figa <t.figa@samsung.com>
>
> Best regards,
> Tomasz
>
Ping.
Thanks,
Pankaj Dubey
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/3] irqchip: exynos-combiner: call handle_bad_irq directly
2014-01-10 16:19 ` Tomasz Figa
2014-02-13 8:14 ` Pankaj Dubey
@ 2014-02-13 22:25 ` Kukjin Kim
1 sibling, 0 replies; 5+ messages in thread
From: Kukjin Kim @ 2014-02-13 22:25 UTC (permalink / raw)
To: linux-arm-kernel
On 01/11/14 01:19, Tomasz Figa wrote:
> Hi Pankaj,
>
> On 10.01.2014 03:32, Pankaj Dubey wrote:
>> This patch is inspired from following commit
>> aec0095653: (irqchip: gic: Call handle_bad_irq() directly)
>>
>> Also this will help in removing unwanted inclusion
>> of header file "asm/mach/irq.h"
>>
>> Signed-off-by: Pankaj Dubey <pankaj.dubey@samsung.com>
>> ---
>> drivers/irqchip/exynos-combiner.c | 3 +--
>> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> Reviewed-by: Tomasz Figa <t.figa@samsung.com>
>
Applied, thanks.
- Kukjin
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-02-13 22:25 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-10 2:32 [PATCH 1/3] irqchip: exynos-combiner: call handle_bad_irq directly Pankaj Dubey
2014-01-10 2:38 ` Pankaj Dubey
2014-01-10 16:19 ` Tomasz Figa
2014-02-13 8:14 ` Pankaj Dubey
2014-02-13 22:25 ` Kukjin Kim
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).