Re: [PATCH] usb: core: replace calls to strerror with %pe format specifier

2024-02-19 Thread Sascha Hauer
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

[PATCH] usb: core: replace calls to strerror with %pe format specifier

2024-02-19 Thread 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 --- drivers/usb/core/usb.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/usb/cor