RE: [PATCH] genirq: Give warning when setup an already-setup non-shared irq

2013-01-14 Thread Liu, Chuansheng
> -Original Message- > From: Thomas Gleixner [mailto:t...@linutronix.de] > Sent: Monday, January 14, 2013 7:16 PM > To: Liu, Chuansheng > Cc: linux-kernel@vger.kernel.org > Subject: Re: [PATCH] genirq: Give warning when setup an already-setup > non-shared irq >

Re: [PATCH] genirq: Give warning when setup an already-setup non-shared irq

2013-01-14 Thread Thomas Gleixner
On Thu, 10 Jan 2013, Chuansheng Liu wrote: > > Meet the case when the request_threaded_irq() with the same irq > is called twice continually, get the below mismatch info: > "IRQ handler type mismatch for IRQ 323" I have no idea where you get that from. The mismatch is printed with: if

Re: [PATCH] genirq: Give warning when setup an already-setup non-shared irq

2013-01-14 Thread Thomas Gleixner
On Thu, 10 Jan 2013, Chuansheng Liu wrote: Meet the case when the request_threaded_irq() with the same irq is called twice continually, get the below mismatch info: IRQ handler type mismatch for IRQ 323 I have no idea where you get that from. The mismatch is printed with: if

RE: [PATCH] genirq: Give warning when setup an already-setup non-shared irq

2013-01-14 Thread Liu, Chuansheng
-Original Message- From: Thomas Gleixner [mailto:t...@linutronix.de] Sent: Monday, January 14, 2013 7:16 PM To: Liu, Chuansheng Cc: linux-kernel@vger.kernel.org Subject: Re: [PATCH] genirq: Give warning when setup an already-setup non-shared irq On Thu, 10 Jan 2013, Chuansheng

[PATCH] genirq: Give warning when setup an already-setup non-shared irq

2013-01-09 Thread Chuansheng Liu
Meet the case when the request_threaded_irq() with the same irq is called twice continually, get the below mismatch info: "IRQ handler type mismatch for IRQ 323" Here give a right warning that like below: "Trying to setup already-setup non-shared IRQ 323" Signed-off-by: liu chuansheng ---

[PATCH] genirq: Give warning when setup an already-setup non-shared irq

2013-01-09 Thread Chuansheng Liu
Meet the case when the request_threaded_irq() with the same irq is called twice continually, get the below mismatch info: IRQ handler type mismatch for IRQ 323 Here give a right warning that like below: Trying to setup already-setup non-shared IRQ 323 Signed-off-by: liu chuansheng