Re: [PATCH v3 2/2] gpio: Get rid of gpio_hog_probe_all()

2023-01-12 Thread Tom Rini
On Thu, Sep 22, 2022 at 05:53:26PM +0200, Quentin Schulz wrote: > From: Marek Vasut > > The gpio_hog_probe_all() functionality can be perfectly well replaced by > DM_FLAG_PROBE_AFTER_BIND DM flag, which would trigger .probe() callback > of each GPIO hog driver instance after .bind() and thus

Re: [PATCH v3 2/2] gpio: Get rid of gpio_hog_probe_all()

2023-01-09 Thread Tom Rini
On Tue, Jan 03, 2023 at 04:28:13PM +0100, Marek Vasut wrote: > On 1/3/23 14:50, Quentin Schulz wrote: > > Hi Patrice, > > > > On 1/3/23 14:35, Patrice CHOTARD wrote: > > > > > > Hi Tom > > > > > > This patch is landing in the mailing list since a while. > > > Do you expect to merge it in master

Re: [PATCH v3 2/2] gpio: Get rid of gpio_hog_probe_all()

2023-01-03 Thread Marek Vasut
On 1/3/23 14:50, Quentin Schulz wrote: Hi Patrice, On 1/3/23 14:35, Patrice CHOTARD wrote: Hi Tom This patch is landing in the mailing list since a while. Do you expect to merge it in master or in next branch soon ? This patch will be useful for STM32MP SoC in order to clean according

Re: [PATCH v3 2/2] gpio: Get rid of gpio_hog_probe_all()

2023-01-03 Thread Tom Rini
On Tue, Jan 03, 2023 at 02:35:00PM +0100, Patrice CHOTARD wrote: > > Hi Tom > > This patch is landing in the mailing list since a while. > Do you expect to merge it in master or in next branch soon ? > This patch will be useful for STM32MP SoC in order to clean according machine > code.

Re: [PATCH v3 2/2] gpio: Get rid of gpio_hog_probe_all()

2023-01-03 Thread Quentin Schulz
Hi Patrice, On 1/3/23 14:35, Patrice CHOTARD wrote: Hi Tom This patch is landing in the mailing list since a while. Do you expect to merge it in master or in next branch soon ? This patch will be useful for STM32MP SoC in order to clean according machine code. The main issue here is that

Re: [PATCH v3 2/2] gpio: Get rid of gpio_hog_probe_all()

2023-01-03 Thread Patrice CHOTARD
Hi Tom This patch is landing in the mailing list since a while. Do you expect to merge it in master or in next branch soon ? This patch will be useful for STM32MP SoC in order to clean according machine code. Thanks Patrice On 9/22/22 17:53, Quentin Schulz wrote: > From: Marek Vasut > >

[PATCH v3 2/2] gpio: Get rid of gpio_hog_probe_all()

2022-09-22 Thread Quentin Schulz
From: Marek Vasut The gpio_hog_probe_all() functionality can be perfectly well replaced by DM_FLAG_PROBE_AFTER_BIND DM flag, which would trigger .probe() callback of each GPIO hog driver instance after .bind() and thus configure the hogged GPIO accordingly. Signed-off-by: Marek Vasut