All of lore.kernel.org
 help / color / mirror / Atom feed
From: Pankaj Dubey <pankaj.dubey@samsung.com>
To: Pankaj Dubey <pankaj.dubey@samsung.com>
Cc: linux-samsung-soc@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, tglx@linutronix.de,
	kgene.kim@samsung.com, catalin.marinas@arm.com,
	thomas.ab@samsung.com
Subject: Re: [PATCH 1/3] irqchip: exynos-combiner: call handle_bad_irq directly
Date: Fri, 10 Jan 2014 11:38:58 +0900	[thread overview]
Message-ID: <52CF5D42.4000404@samsung.com> (raw)
In-Reply-To: <1389321142-4073-1-git-send-email-pankaj.dubey@samsung.com>

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);
>   

WARNING: multiple messages have this Message-ID (diff)
From: pankaj.dubey@samsung.com (Pankaj Dubey)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/3] irqchip: exynos-combiner: call handle_bad_irq directly
Date: Fri, 10 Jan 2014 11:38:58 +0900	[thread overview]
Message-ID: <52CF5D42.4000404@samsung.com> (raw)
In-Reply-To: <1389321142-4073-1-git-send-email-pankaj.dubey@samsung.com>

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);
>   

  reply	other threads:[~2014-01-10  2:24 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-10  2:32 [PATCH 1/3] irqchip: exynos-combiner: call handle_bad_irq directly Pankaj Dubey
2014-01-10  2:32 ` Pankaj Dubey
2014-01-10  2:38 ` Pankaj Dubey [this message]
2014-01-10  2:38   ` Pankaj Dubey
2014-01-10 16:19 ` Tomasz Figa
2014-01-10 16:19   ` Tomasz Figa
2014-02-13  8:14   ` Pankaj Dubey
2014-02-13  8:14     ` Pankaj Dubey
2014-02-13 22:25   ` Kukjin Kim
2014-02-13 22:25     ` Kukjin Kim

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=52CF5D42.4000404@samsung.com \
    --to=pankaj.dubey@samsung.com \
    --cc=catalin.marinas@arm.com \
    --cc=kgene.kim@samsung.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=tglx@linutronix.de \
    --cc=thomas.ab@samsung.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.