mirror of
https://github.com/torvalds/linux.git
synced 2026-06-04 04:23:35 +02:00
staging: fbtft: Remove reference to fb_blank
The field fb_blank in struct backlight_properties is deprecated and should not be used. Don't output its value in the driver's debug print. Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Reviewed-by: Dan Carpenter <dan.carpenter@linaro.org> Link: https://lore.kernel.org/r/20240319093915.31778-6-tzimmermann@suse.de Signed-off-by: Lee Jones <lee@kernel.org>
This commit is contained in:
parent
6be0fb641b
commit
9a7bb61ffe
|
|
@ -194,9 +194,7 @@ static int update_onboard_backlight(struct backlight_device *bd)
|
|||
struct fbtft_par *par = bl_get_data(bd);
|
||||
bool on;
|
||||
|
||||
fbtft_par_dbg(DEBUG_BACKLIGHT, par,
|
||||
"%s: power=%d, fb_blank=%d\n",
|
||||
__func__, bd->props.power, bd->props.fb_blank);
|
||||
fbtft_par_dbg(DEBUG_BACKLIGHT, par, "%s: power=%d\n", __func__, bd->props.power);
|
||||
|
||||
on = !backlight_is_blank(bd);
|
||||
/* Onboard backlight connected to GPIO0 on SSD1351, GPIO1 unused */
|
||||
|
|
|
|||
|
|
@ -133,9 +133,8 @@ static int fbtft_backlight_update_status(struct backlight_device *bd)
|
|||
struct fbtft_par *par = bl_get_data(bd);
|
||||
bool polarity = par->polarity;
|
||||
|
||||
fbtft_par_dbg(DEBUG_BACKLIGHT, par,
|
||||
"%s: polarity=%d, power=%d, fb_blank=%d\n",
|
||||
__func__, polarity, bd->props.power, bd->props.fb_blank);
|
||||
fbtft_par_dbg(DEBUG_BACKLIGHT, par, "%s: polarity=%d, power=%d\n", __func__,
|
||||
polarity, bd->props.power);
|
||||
|
||||
if (!backlight_is_blank(bd))
|
||||
gpiod_set_value(par->gpio.led[0], polarity);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user