On 2024/8/30 16:08, Krzysztof Kozlowski wrote: > On 29/08/2024 14:48, Yu Jiaoliang wrote: >> Error handling in probe() can be a bit simpler with dev_err_probe(). >> >> Signed-off-by: Yu Jiaoliang <yujiaoliang@xxxxxxxx> >> --- >> drivers/soc/qcom/qcom-pbs.c | 7 +++---- >> 1 file changed, 3 insertions(+), 4 deletions(-) >> >> diff --git a/drivers/soc/qcom/qcom-pbs.c b/drivers/soc/qcom/qcom-pbs.c >> index 77a70d3d0d0b..ab9de12ec901 100644 >> --- a/drivers/soc/qcom/qcom-pbs.c >> +++ b/drivers/soc/qcom/qcom-pbs.c >> @@ -201,10 +201,9 @@ static int qcom_pbs_probe(struct platform_device *pdev) >> } >> >> ret = device_property_read_u32(pbs->dev, "reg", &val); >> - if (ret < 0) { >> - dev_err(pbs->dev, "Couldn't find reg, ret = %d\n", ret); >> - return ret; >> - } >> + if (ret < 0) >> + return dev_err_probe(pbs->dev, ret, "Couldn't find reg\n"); Thank you for the feedback. I apologize for the oversight. > This cannot defer, so not much benefits. As noted in the dev_err_probe documentation, using this helper offers benefits like standardized error code formatting and more compact error paths. "Using this helper in your probe function is totally fine even if @err known to nerver be -EPROBE_DEFER. The benefit compared to a normal dev_err() is the standardized format of the error code, it being emitted syumbolically (i.e. you get "EAGAIN" instead of "-35") and the fact that the error code is returned which allows more compact error paths." > And you ignore other place in > the probe()... That's like a weird pattern with all your patches change > something irrelevant, but leave other places unchanged. If you think it's OK, I will update the patch to include both modifications in the probe() function. I plan to submit patch v2 with these changes and hope it will be more acceptable. > That's pointless and churn. > > Best regards, > Krzysztof > > Best Regards, Yu