Re: [PATCH V2] spmi: pmic-arb: Move the ownership check to irq_chip callback

2017-08-30 Thread Stephen Boyd
On 08/23, Kiran Gunda wrote: > Check the irq ownership in the irq_request_resources callback > instead of checking it during the irq mapping. This can prevent > installing the flow handler for the interrupt that is not owned by the EE > and allow the irq translation during the gpio driver probe. >

Re: [PATCH V2] spmi: pmic-arb: Move the ownership check to irq_chip callback

2017-08-24 Thread Shawn Guo
On Wed, Aug 23, 2017 at 06:16:26PM +0530, Kiran Gunda wrote: > Check the irq ownership in the irq_request_resources callback > instead of checking it during the irq mapping. This can prevent > installing the flow handler for the interrupt that is not owned by the EE > and allow the irq translation

[PATCH V2] spmi: pmic-arb: Move the ownership check to irq_chip callback

2017-08-23 Thread Kiran Gunda
Check the irq ownership in the irq_request_resources callback instead of checking it during the irq mapping. This can prevent installing the flow handler for the interrupt that is not owned by the EE and allow the irq translation during the gpio driver probe. Signed-off-by: Kiran Gunda --- V2: Fi