Re: [PATCH] soc: Use dev_fwnode()

2025-07-30 Thread Christophe Leroy
Le 08/07/2025 à 10:33, Christophe Leroy a écrit : Hi, Le 11/06/2025 à 12:43, Jiri Slaby (SUSE) a écrit : irq_domain_create_simple() takes fwnode as the first argument. It can be extracted from the struct device using dev_fwnode() helper instead of using of_node with of_fwnode_handle(). So u

Re: [PATCH] soc: Use dev_fwnode()

2025-07-08 Thread Christophe Leroy
Hi, Le 11/06/2025 à 12:43, Jiri Slaby (SUSE) a écrit : irq_domain_create_simple() takes fwnode as the first argument. It can be extracted from the struct device using dev_fwnode() helper instead of using of_node with of_fwnode_handle(). So use the dev_fwnode() helper. Signed-off-by: Jiri Slaby

Re: [PATCH] soc: Use dev_fwnode()

2025-06-12 Thread Christophe Leroy
Le 12/06/2025 à 13:31, Krzysztof Kozlowski a écrit : On 11/06/2025 12:43, Jiri Slaby (SUSE) wrote: irq_domain_create_simple() takes fwnode as the first argument. It can be extracted from the struct device using dev_fwnode() helper instead of using of_node with of_fwnode_handle(). So use the

Re: [PATCH] soc: Use dev_fwnode()

2025-06-12 Thread Krzysztof Kozlowski
On 11/06/2025 12:43, Jiri Slaby (SUSE) wrote: > irq_domain_create_simple() takes fwnode as the first argument. It can be > extracted from the struct device using dev_fwnode() helper instead of > using of_node with of_fwnode_handle(). > > So use the dev_fwnode() helper. > > Signed-off-by: Jiri Sla

Re: [PATCH] soc: Use dev_fwnode()

2025-06-11 Thread Thierry Reding
On Wed, Jun 11, 2025 at 12:43:47PM +0200, Jiri Slaby (SUSE) wrote: > irq_domain_create_simple() takes fwnode as the first argument. It can be > extracted from the struct device using dev_fwnode() helper instead of > using of_node with of_fwnode_handle(). > > So use the dev_fwnode() helper. > > Si