Re: [PATCH] devfreq: rk3399_dmc: Simplify with dev_err_probe()

2021-02-27 Thread Chanwoo Choi
On 21. 2. 28. 오전 1:35, Krzysztof Kozlowski wrote: On Sat, 29 Aug 2020 at 15:10, Chanwoo Choi wrote: On Sat, Aug 29, 2020 at 12:31 AM Krzysztof Kozlowski wrote: Common pattern of handling deferred probe can be simplified with dev_err_probe(). Less code and the error value gets printed.

Re: [PATCH] devfreq: rk3399_dmc: Simplify with dev_err_probe()

2021-02-27 Thread Krzysztof Kozlowski
On Sat, 29 Aug 2020 at 15:10, Chanwoo Choi wrote: > > On Sat, Aug 29, 2020 at 12:31 AM Krzysztof Kozlowski wrote: > > > > Common pattern of handling deferred probe can be simplified with > > dev_err_probe(). Less code and the error value gets printed. > > > > Signed-off-by: Krzysztof Kozlowski

Re: [PATCH] devfreq: rk3399_dmc: Simplify with dev_err_probe()

2020-08-29 Thread Chanwoo Choi
On Sat, Aug 29, 2020 at 12:31 AM Krzysztof Kozlowski wrote: > > Common pattern of handling deferred probe can be simplified with > dev_err_probe(). Less code and the error value gets printed. > > Signed-off-by: Krzysztof Kozlowski > --- > drivers/devfreq/rk3399_dmc.c | 20 ++--

[PATCH] devfreq: rk3399_dmc: Simplify with dev_err_probe()

2020-08-28 Thread Krzysztof Kozlowski
Common pattern of handling deferred probe can be simplified with dev_err_probe(). Less code and the error value gets printed. Signed-off-by: Krzysztof Kozlowski --- drivers/devfreq/rk3399_dmc.c | 20 ++-- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git