Commit 1c679f91 authored by Yang Yingliang's avatar Yang Yingliang Committed by Marc Kleine-Budde

can: flexcan: Switch to use dev_err_probe() helper

dev_err() can be replace with dev_err_probe() which will check if error
code is -EPROBE_DEFER.
Signed-off-by: default avatarYang Yingliang <yangyingliang@huawei.com>
Link: https://lore.kernel.org/all/20220914134030.3782754-1-yangyingliang@huawei.comSigned-off-by: default avatarMarc Kleine-Budde <mkl@pengutronix.de>
parent bcedce7c
...@@ -2177,8 +2177,7 @@ static int flexcan_probe(struct platform_device *pdev) ...@@ -2177,8 +2177,7 @@ static int flexcan_probe(struct platform_device *pdev)
err = flexcan_setup_stop_mode(pdev); err = flexcan_setup_stop_mode(pdev);
if (err < 0) { if (err < 0) {
if (err != -EPROBE_DEFER) dev_err_probe(&pdev->dev, err, "setup stop mode failed\n");
dev_err(&pdev->dev, "setup stop mode failed\n");
goto failed_setup_stop_mode; goto failed_setup_stop_mode;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment