Re: [PATCH] soc: mediatek: pm-domains: Don't print an error if child domain is deferred

2021-01-31 Thread Matthias Brugger
On 13/01/2021 22:30, Enric Balletbo i Serra wrote: > Child domains can be deferred by the core because one of its resources > is not available yet, in such case, it will print an error, but > later it will succeed to probe. Fix that using the dev_err_probe() > function so it only prints an

Re: [PATCH] soc: mediatek: pm-domains: Don't print an error if child domain is deferred

2021-01-13 Thread Hsin-Yi Wang
On Thu, Jan 14, 2021 at 5:30 AM Enric Balletbo i Serra wrote: > > Child domains can be deferred by the core because one of its resources > is not available yet, in such case, it will print an error, but > later it will succeed to probe. Fix that using the dev_err_probe() > function so it only

[PATCH] soc: mediatek: pm-domains: Don't print an error if child domain is deferred

2021-01-13 Thread Enric Balletbo i Serra
Child domains can be deferred by the core because one of its resources is not available yet, in such case, it will print an error, but later it will succeed to probe. Fix that using the dev_err_probe() function so it only prints an error on a real error. Signed-off-by: Enric Balletbo i Serra ---