diff options
author | Krzysztof Kozlowski <krzk@kernel.org> | 2024-04-24 08:33:43 +0200 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2024-05-03 11:45:46 +0200 |
commit | 8b2d4564eca41581950ee113d41e180db7ea77b9 (patch) | |
tree | d0d8a8ce1f6831571d71696aeb40233efb2b1c83 | |
parent | fbdev: clps711x: Constify lcd_ops (diff) | |
download | linux-8b2d4564eca41581950ee113d41e180db7ea77b9.tar.xz linux-8b2d4564eca41581950ee113d41e180db7ea77b9.zip |
fbdev: imx: 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 <krzk@kernel.org>
Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
Link: https://lore.kernel.org/r/20240424-video-backlight-lcd-ops-v2-17-1aaa82b07bc6@kernel.org
Signed-off-by: Lee Jones <lee@kernel.org>
-rw-r--r-- | drivers/video/fbdev/imxfb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/fbdev/imxfb.c b/drivers/video/fbdev/imxfb.c index a4dbc72f93c3..4ebfe9b9df60 100644 --- a/drivers/video/fbdev/imxfb.c +++ b/drivers/video/fbdev/imxfb.c @@ -857,7 +857,7 @@ static int imxfb_lcd_set_power(struct lcd_device *lcddev, int power) return 0; } -static struct lcd_ops imxfb_lcd_ops = { +static const struct lcd_ops imxfb_lcd_ops = { .check_fb = imxfb_lcd_check_fb, .get_contrast = imxfb_lcd_get_contrast, .set_contrast = imxfb_lcd_set_contrast, |