]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
pinctrl: madera: Simplify with dev_err_probe()
authorYan Zhen <yanzhen@vivo.com>
Thu, 29 Aug 2024 04:48:35 +0000 (12:48 +0800)
committerLinus Walleij <linus.walleij@linaro.org>
Mon, 2 Sep 2024 08:28:53 +0000 (10:28 +0200)
commitb042baa52b74181ad12a655f2ab1331ce7a1ebf7
tree294fd193f9864e790866e55ba7ad5fa243f2814b
parent91bb8d0bf2fe69d0116d8f31c5c36b57ef3d8e20
pinctrl: madera: Simplify with dev_err_probe()

Switch to use dev_err_probe() to simplify the error path and
unify a message template.

Using this helper is totally fine even if err is known to never
be -EPROBE_DEFER.

The benefit compared to a normal dev_err() is the standardized format
of the error code, it being emitted symbolically and the fact that
the error code is returned which allows more compact error paths.

Signed-off-by: Yan Zhen <yanzhen@vivo.com>
Reviewed-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Link: https://lore.kernel.org/20240829044835.2047794-1-yanzhen@vivo.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/cirrus/pinctrl-madera-core.c