Re: [PATCH] driver core: Let dev_err_probe() use the symbolic error code

2020-08-11 Thread Andrzej Hajda
Hi Uwe, On 11.08.2020 09:20, Uwe Kleine-König wrote: > This makes the error message: > > error -EIO: ... > > instead of > > error -5: ... > > Signed-off-by: Uwe Kleine-König > --- > drivers/base/core.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/dri

Re: [PATCH] driver core: Let dev_err_probe() use the symbolic error code

2020-08-11 Thread Mark Brown
On Tue, Aug 11, 2020 at 09:20:36AM +0200, Uwe Kleine-König wrote: > This makes the error message: > > error -EIO: ... > > instead of > > error -5: ... Reviewed-by: Mark Brown Having the plain text is very much nicer when reading the logs! signature.asc Description: PGP signature

[PATCH] driver core: Let dev_err_probe() use the symbolic error code

2020-08-11 Thread Uwe Kleine-König
This makes the error message: error -EIO: ... instead of error -5: ... Signed-off-by: Uwe Kleine-König --- drivers/base/core.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/base/core.c b/drivers/base/core.c index ac1046a382bc..33734d8831c7 100