Re: [PATCH v1] can: kvaser_usb: Simplify with dev_err_probe()
From: Marc Kleine-Budde <mkl@pengutronix.de>
Date: 2024-08-30 14:18:18
Also in:
linux-can, lkml
On 30.08.2024 14:50:44, Alexander Lobakin wrote:
From: Yan Zhen <redacted> Date: Fri, 30 Aug 2024 19:06:51 +0800quoted
dev_err_probe() is used to log an error message during the probe process of a device. It can 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 <redacted> --- .../net/can/usb/kvaser_usb/kvaser_usb_core.c | 42 +++++++------------ 1 file changed, 16 insertions(+), 26 deletions(-)diff --git a/drivers/net/can/usb/kvaser_usb/kvaser_usb_core.c b/drivers/net/can/usb/kvaser_usb/kvaser_usb_core.c index 35b4132b0639..bcf8d870af17 100644 --- a/drivers/net/can/usb/kvaser_usb/kvaser_usb_core.c +++ b/drivers/net/can/usb/kvaser_usb/kvaser_usb_core.c@@ -898,10 +898,8 @@ static int kvaser_usb_probe(struct usb_interface *intf, ops = driver_info->ops; err = ops->dev_setup_endpoints(dev); - if (err) { - dev_err(&intf->dev, "Cannot get usb endpoint(s)"); - return err; - } + if (err) + return dev_err_probe(&intf->dev, err, "Cannot get usb endpoint(s)"); dev->udev = interface_to_usbdev(intf);@@ -912,26 +910,20 @@ static int kvaser_usb_probe(struct usb_interface *intf, dev->card_data.ctrlmode_supported = 0; dev->card_data.capabilities = 0; err = ops->dev_init_card(dev); - if (err) { - dev_err(&intf->dev, - "Failed to initialize card, error %d\n", err); - return err; - } + if (err) + return dev_err_probe(&intf->dev, err, + "Failed to initialize card\n");The line wrap is wrong in all the places where you used it. It should be aligned to the opening brace, like return dev_err_probe(&intf->dev, err, "Failed ...) Replace one tab with 5 spaces to fix that, here and in the whole patch.
Fixed while applying. Thanks, Marc -- Pengutronix e.K. | Marc Kleine-Budde | Embedded Linux | https://www.pengutronix.de | Vertretung Nürnberg | Phone: +49-5121-206917-129 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-9 |
Attachments
- signature.asc [application/pgp-signature] 488 bytes