Re: [PATCH] ASoC: rt5682: Prefer async probe

2020-09-01 Thread Mark Brown
On Fri, 28 Aug 2020 16:20:27 -0700, Douglas Anderson wrote: > The probe of rt5682 is pretty slow. A quick measurement shows that it > takes ~650 ms on at least one board. There's no reason to block all > other drivers waiting for this probe to finish. Set the flag to allow > other drivers to pro

Re: [PATCH] ASoC: rt5682: Prefer async probe

2020-08-30 Thread Doug Anderson
Hi, On Sun, Aug 30, 2020 at 4:05 AM Cheng-yi Chiang wrote: > > > @@ -294,6 +294,7 @@ static struct i2c_driver rt5682_i2c_driver = { > > .name = "rt5682", > > .of_match_table = rt5682_of_match, > > .acpi_match_table = rt5682_acpi_match, > > +

Re: [PATCH] ASoC: rt5682: Prefer async probe

2020-08-30 Thread Cheng-yi Chiang
On Sat, Aug 29, 2020 at 7:20 AM Douglas Anderson wrote: > > The probe of rt5682 is pretty slow. A quick measurement shows that it > takes ~650 ms on at least one board. There's no reason to block all > other drivers waiting for this probe to finish. Set the flag to allow > other drivers to prob

[PATCH] ASoC: rt5682: Prefer async probe

2020-08-28 Thread Douglas Anderson
The probe of rt5682 is pretty slow. A quick measurement shows that it takes ~650 ms on at least one board. There's no reason to block all other drivers waiting for this probe to finish. Set the flag to allow other drivers to probe while we're probing. Signed-off-by: Douglas Anderson --- NOTE: