Re: [PATCH v3 6/8] irqchip/gic-v3-its: Initialize its nodes later

2017-08-22 Thread Robert Richter
Marc, thanks for your review. On 21.08.17 09:30:24, Marc Zyngier wrote: > +Lorenzo > > On 08/08/17 13:22, Robert Richter wrote: > > Use an initcall to initialize its. This allows us to use the device > > framework during initialization that is up at this point. We use > > subsys_initcall() here

Re: [PATCH v3 6/8] irqchip/gic-v3-its: Initialize its nodes later

2017-08-21 Thread Marc Zyngier
+Lorenzo On 08/08/17 13:22, Robert Richter wrote: > Use an initcall to initialize its. This allows us to use the device > framework during initialization that is up at this point. We use > subsys_initcall() here since we need the arch to be initialized > first. It is before pci and platform device

[PATCH v3 6/8] irqchip/gic-v3-its: Initialize its nodes later

2017-08-08 Thread Robert Richter
Use an initcall to initialize its. This allows us to use the device framework during initialization that is up at this point. We use subsys_initcall() here since we need the arch to be initialized first. It is before pci and platform device probe where devices are bound to msi interrupts. Signed-o