diff options
author | Krzysztof Kozlowski <[email protected]> | 2024-04-24 08:33:35 +0200 |
---|---|---|
committer | Lee Jones <[email protected]> | 2024-05-03 10:45:16 +0100 |
commit | 7ae6431a105d07cd5334870edc17496833b5a464 (patch) | |
tree | edade753e9e6676b1579d04704e08b2967f6680b | |
parent | aefc911e42a35e9d4337c5ab9b2319039f445574 (diff) |
backlight: lms283gf05: Constify lcd_ops
'struct lcd_ops' is not modified by core backlight code, so it can be
made const for increased code safety.
Signed-off-by: Krzysztof Kozlowski <[email protected]>
Reviewed-by: Daniel Thompson <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Lee Jones <[email protected]>
-rw-r--r-- | drivers/video/backlight/lms283gf05.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/backlight/lms283gf05.c b/drivers/video/backlight/lms283gf05.c index 36856962ed83..a65490e83d3d 100644 --- a/drivers/video/backlight/lms283gf05.c +++ b/drivers/video/backlight/lms283gf05.c @@ -139,7 +139,7 @@ static int lms283gf05_power_set(struct lcd_device *ld, int power) return 0; } -static struct lcd_ops lms_ops = { +static const struct lcd_ops lms_ops = { .set_power = lms283gf05_power_set, .get_power = NULL, }; |