Re: [PATCH 3/4] cpufreq: s5pv210: Defer probe if getting regulators fail

2019-01-10 Thread Paweł Chmiel
czw., 10 sty 2019 o 08:01 Viresh Kumar napisał(a): > > On 08-01-19, 21:05, Paweł Chmiel wrote: > > There is possibility, that when probing driver, regulators are not yet > > initialized. In this case we should return EPROBE_DEFER and wait till > > they're initialized, since they're required curren

Re: [PATCH 3/4] cpufreq: s5pv210: Defer probe if getting regulators fail

2019-01-09 Thread Viresh Kumar
On 08-01-19, 21:05, Paweł Chmiel wrote: > There is possibility, that when probing driver, regulators are not yet > initialized. In this case we should return EPROBE_DEFER and wait till > they're initialized, since they're required currently for cpufreq driver > to work. Also move regulator initiali

[PATCH 3/4] cpufreq: s5pv210: Defer probe if getting regulators fail

2019-01-08 Thread Paweł Chmiel
There is possibility, that when probing driver, regulators are not yet initialized. In this case we should return EPROBE_DEFER and wait till they're initialized, since they're required currently for cpufreq driver to work. Also move regulator initialization code at beginning of probe, so we can def