mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] usb: core: replace calls to strerror with %pe format specifier
@ 2024-02-19 17:21 Ahmad Fatoum
  2024-02-20  7:19 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Ahmad Fatoum @ 2024-02-19 17:21 UTC (permalink / raw)
  To: barebox; +Cc: Ahmad Fatoum

printf(), and by extension dev_err(), already has built-in support for
formatting error codes, so make use of that instead of manual use of
strerror().

Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
 drivers/usb/core/usb.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/usb/core/usb.c b/drivers/usb/core/usb.c
index 62d9f11146a9..614527fecbf3 100644
--- a/drivers/usb/core/usb.c
+++ b/drivers/usb/core/usb.c
@@ -477,8 +477,8 @@ int usb_new_device(struct usb_device *dev)
 	/* we set the default configuration here */
 	err = usb_set_configuration(dev, dev->config.desc.bConfigurationValue);
 	if (err) {
-		dev_err(&dev->dev, "Setting default configuration failed with: %s\n" \
-			"len %d, status %lX\n", strerror(-err),
+		dev_err(&dev->dev, "Setting default configuration failed with: %pe\n" \
+			"len %d, status %lX\n", ERR_PTR(err),
 		       dev->act_len, dev->status);
 		goto err_out;
 	}
@@ -502,7 +502,7 @@ int usb_new_device(struct usb_device *dev)
 
 	err = register_device(&dev->dev);
 	if (err) {
-		dev_err(&dev->dev, "Failed to register device: %s\n", strerror(-err));
+		dev_err(&dev->dev, "Failed to register device: %pe\n", ERR_PTR(err));
 		goto err_out;
 	}
 
-- 
2.39.2




^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] usb: core: replace calls to strerror with %pe format specifier
  2024-02-19 17:21 [PATCH] usb: core: replace calls to strerror with %pe format specifier Ahmad Fatoum
@ 2024-02-20  7:19 ` Sascha Hauer
  0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2024-02-20  7:19 UTC (permalink / raw)
  To: barebox, Ahmad Fatoum


On Mon, 19 Feb 2024 18:21:08 +0100, Ahmad Fatoum wrote:
> printf(), and by extension dev_err(), already has built-in support for
> formatting error codes, so make use of that instead of manual use of
> strerror().
> 
> 

Applied, thanks!

[1/1] usb: core: replace calls to strerror with %pe format specifier
      https://git.pengutronix.de/cgit/barebox/commit/?id=ecab0d0bc4c9 (link may not be stable)

Best regards,
-- 
Sascha Hauer <s.hauer@pengutronix.de>




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-02-20  7:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-19 17:21 [PATCH] usb: core: replace calls to strerror with %pe format specifier Ahmad Fatoum
2024-02-20  7:19 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox