Re: [PATCH v1 3/4] backlight: hx8357: Make use of dev_err_probe()

2024-01-24 Thread Daniel Thompson
On Sun, Jan 14, 2024 at 05:25:10PM +0200, Andy Shevchenko wrote: > Simplify the error handling in probe function by switching from > dev_err() to dev_err_probe(). > > Signed-off-by: Andy Shevchenko Reviewed-by: Daniel Thompson Daniel.

Re: [PATCH v1 3/4] backlight: hx8357: Make use of dev_err_probe()

2024-01-15 Thread Javier Martinez Canillas
Andy Shevchenko writes: > Simplify the error handling in probe function by switching from > dev_err() to dev_err_probe(). > > Signed-off-by: Andy Shevchenko > --- Reviewed-by: Javier Martinez Canillas -- Best regards, Javier Martinez Canillas Core Platforms Red Hat

[PATCH v1 3/4] backlight: hx8357: Make use of dev_err_probe()

2024-01-14 Thread Andy Shevchenko
Simplify the error handling in probe function by switching from dev_err() to dev_err_probe(). Signed-off-by: Andy Shevchenko --- drivers/video/backlight/hx8357.c | 12 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/drivers/video/backlight/hx8357.c