projects
/
linux-2.6-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a2e25c8
)
backlight: ams369fg06: Constify lcd_ops
author
Krzysztof Kozlowski
<krzk@kernel.org>
Wed, 24 Apr 2024 06:33:28 +0000
(08:33 +0200)
committer
Lee Jones
<lee@kernel.org>
Fri, 3 May 2024 09:44:51 +0000
(10:44 +0100)
'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: Daniel Thompson <daniel.thompson@linaro.org>
Link:
https://lore.kernel.org/r/20240424-video-backlight-lcd-ops-v2-2-1aaa82b07bc6@kernel.org
Signed-off-by: Lee Jones <lee@kernel.org>
drivers/video/backlight/ams369fg06.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/video/backlight/ams369fg06.c
b/drivers/video/backlight/ams369fg06.c
index 522dd81110b8e7f5b945d10793327f0d1814d1d5..57ec205d2bd2a33f11b0504d8769135c4329bc06 100644
(file)
--- a/
drivers/video/backlight/ams369fg06.c
+++ b/
drivers/video/backlight/ams369fg06.c
@@
-427,7
+427,7
@@
static int ams369fg06_set_brightness(struct backlight_device *bd)
return ret;
}
-static struct lcd_ops ams369fg06_lcd_ops = {
+static
const
struct lcd_ops ams369fg06_lcd_ops = {
.get_power = ams369fg06_get_power,
.set_power = ams369fg06_set_power,
};