backlight: omap1: Replace FB_BLANK_ states with simple on/off
authorThomas Zimmermann <tzimmermann@suse.de>
Tue, 19 Mar 2024 09:37:22 +0000 (10:37 +0100)
committerLee Jones <lee@kernel.org>
Thu, 28 Mar 2024 10:12:52 +0000 (10:12 +0000)
commitbf8c95504494ceb097f94e9aa03a5f5a0cfaed98
treef3ed34091b66097fdc50d5b405da891ce32933ac
parentb7ad4c67ed945524ab38bd61676e684eff84fc2a
backlight: omap1: Replace FB_BLANK_ states with simple on/off

The backlight is on for fb_blank eq FB_BLANK_UNBLANK, or off for
any other value in fb_blank. But the field fb_blank in struct
backlight_properties is deprecated and should not be used any
longer.

Replace the test for fb_blank in omap's backlight code with a
simple boolean parameter and push the test into the update_status
helper. Instead of reading fb_blank directly, decode the backlight
device's status with backlight_is_blank().

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Dan Carpenter <dan.carpenter@linaro.org>
Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org>
Link: https://lore.kernel.org/r/20240319093915.31778-4-tzimmermann@suse.de
Signed-off-by: Lee Jones <lee@kernel.org>
drivers/video/backlight/omap1_bl.c