diff mbox series

[-next] rtc: s3c: Switch to use dev_err_probe() helper

Message ID 20220919083812.755082-1-yangyingliang@huawei.com
State Accepted
Headers show
Series [-next] rtc: s3c: Switch to use dev_err_probe() helper | expand

Commit Message

Yang Yingliang Sept. 19, 2022, 8:38 a.m. UTC
In the probe path, dev_err() can be replace with dev_err_probe()
which will check if error code is -EPROBE_DEFER and prints the
error name.

Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
 drivers/rtc/rtc-s3c.c | 11 +++--------
 1 file changed, 3 insertions(+), 8 deletions(-)

Comments

Alexandre Belloni Nov. 14, 2022, 6:25 p.m. UTC | #1
On Mon, 19 Sep 2022 16:38:12 +0800, Yang Yingliang wrote:
> In the probe path, dev_err() can be replace with dev_err_probe()
> which will check if error code is -EPROBE_DEFER and prints the
> error name.
> 
> 

Applied, thanks!

[1/1] rtc: s3c: Switch to use dev_err_probe() helper
      commit: 25c9da5a536efb9eac59aaa6c1466935841cf694

Best regards,
diff mbox series

Patch

diff --git a/drivers/rtc/rtc-s3c.c b/drivers/rtc/rtc-s3c.c
index db529733c9c4..8fc5efde3e0b 100644
--- a/drivers/rtc/rtc-s3c.c
+++ b/drivers/rtc/rtc-s3c.c
@@ -429,14 +429,9 @@  static int s3c_rtc_probe(struct platform_device *pdev)
 		return PTR_ERR(info->base);
 
 	info->rtc_clk = devm_clk_get(&pdev->dev, "rtc");
-	if (IS_ERR(info->rtc_clk)) {
-		ret = PTR_ERR(info->rtc_clk);
-		if (ret != -EPROBE_DEFER)
-			dev_err(&pdev->dev, "failed to find rtc clock\n");
-		else
-			dev_dbg(&pdev->dev, "probe deferred due to missing rtc clk\n");
-		return ret;
-	}
+	if (IS_ERR(info->rtc_clk))
+		return dev_err_probe(&pdev->dev, PTR_ERR(info->rtc_clk),
+				     "failed to find rtc clock\n");
 	ret = clk_prepare_enable(info->rtc_clk);
 	if (ret)
 		return ret;