Message ID | 20240424-video-backlight-lcd-ops-v2-13-1aaa82b07bc6@kernel.org |
---|---|
State | Accepted |
Commit | 02bc4c447e29b29ddbca78d3ea485e0b23cd64b8 |
Headers | show |
Series | [v2,01/19] backlight: Constify lcd_ops | expand |
diff --git a/drivers/video/backlight/platform_lcd.c b/drivers/video/backlight/platform_lcd.c index dc37494baf42..76872f5c34c5 100644 --- a/drivers/video/backlight/platform_lcd.c +++ b/drivers/video/backlight/platform_lcd.c @@ -62,7 +62,7 @@ static int platform_lcd_match(struct lcd_device *lcd, struct fb_info *info) return plcd->us->parent == info->device; } -static struct lcd_ops platform_lcd_ops = { +static const struct lcd_ops platform_lcd_ops = { .get_power = platform_lcd_get_power, .set_power = platform_lcd_set_power, .check_fb = platform_lcd_match,