Message ID | 20210621122148.116863-1-u.kleine-koenig@pengutronix.de |
---|---|
Headers | show |
Series | backlight: lm3630a: convert to atomic PWM API | expand |
On Mon, Jun 21, 2021 at 02:21:47PM +0200, Uwe Kleine-König wrote: > According to <linux/backlight.h> .update_status() is supposed to > return 0 on success and a negative error code otherwise. Adapt > lm3630a_bank_a_update_status() and lm3630a_bank_b_update_status() to > actually do it. > > While touching that also add the error code to the failure message. > > Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org> Daniel. > --- > drivers/video/backlight/lm3630a_bl.c | 12 ++++++------ > 1 file changed, 6 insertions(+), 6 deletions(-) > > diff --git a/drivers/video/backlight/lm3630a_bl.c b/drivers/video/backlight/lm3630a_bl.c > index e88a2b0e5904..7140b0d98082 100644 > --- a/drivers/video/backlight/lm3630a_bl.c > +++ b/drivers/video/backlight/lm3630a_bl.c > @@ -190,7 +190,7 @@ static int lm3630a_bank_a_update_status(struct backlight_device *bl) > if ((pwm_ctrl & LM3630A_PWM_BANK_A) != 0) { > lm3630a_pwm_ctrl(pchip, bl->props.brightness, > bl->props.max_brightness); > - return bl->props.brightness; > + return 0; > } > > /* disable sleep */ > @@ -210,8 +210,8 @@ static int lm3630a_bank_a_update_status(struct backlight_device *bl) > return 0; > > out_i2c_err: > - dev_err(pchip->dev, "i2c failed to access\n"); > - return bl->props.brightness; > + dev_err(pchip->dev, "i2c failed to access (%pe)\n", ERR_PTR(ret)); > + return ret; > } > > static int lm3630a_bank_a_get_brightness(struct backlight_device *bl) > @@ -267,7 +267,7 @@ static int lm3630a_bank_b_update_status(struct backlight_device *bl) > if ((pwm_ctrl & LM3630A_PWM_BANK_B) != 0) { > lm3630a_pwm_ctrl(pchip, bl->props.brightness, > bl->props.max_brightness); > - return bl->props.brightness; > + return 0; > } > > /* disable sleep */ > @@ -287,8 +287,8 @@ static int lm3630a_bank_b_update_status(struct backlight_device *bl) > return 0; > > out_i2c_err: > - dev_err(pchip->dev, "i2c failed to access REG_CTRL\n"); > - return bl->props.brightness; > + dev_err(pchip->dev, "i2c failed to access (%pe)\n", ERR_PTR(ret)); > + return ret; > } > > static int lm3630a_bank_b_get_brightness(struct backlight_device *bl) > -- > 2.30.2 >
On Mon, 21 Jun 2021, Uwe Kleine-König wrote: > According to <linux/backlight.h> .update_status() is supposed to > return 0 on success and a negative error code otherwise. Adapt > lm3630a_bank_a_update_status() and lm3630a_bank_b_update_status() to > actually do it. > > While touching that also add the error code to the failure message. > > Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> > --- > drivers/video/backlight/lm3630a_bl.c | 12 ++++++------ > 1 file changed, 6 insertions(+), 6 deletions(-) Fixed the subject line for you and applied, thanks.
From: Uwe Kleine-König <uwe@kleine-koenig.org> Hello, this is v3 of the series. In v1 and v2 I failed to notice that the driver contains two (nearly identical) update_status callbacks. Daniel pointed that out, so here comes v3. Best regards Uwe Uwe Kleine-König (2): backlight: lm3630a: fix return code of .update_status() callback backlight: lm3630a: convert to atomic PWM API and check for errors drivers/video/backlight/lm3630a_bl.c | 50 +++++++++++++--------------- 1 file changed, 23 insertions(+), 27 deletions(-)