diff options
author | Nishka Dasgupta <nishkadg.linux@gmail.com> | 2019-08-13 11:58:55 +0300 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2019-10-02 16:19:00 +0300 |
commit | 7050a7c3747787c3f9ba94df59eb7e9e018bbdf2 (patch) | |
tree | 3357397914c76b0ddd683b4bc2d6787681b7bf2a /drivers/video | |
parent | 8ad003e7348ecd59f457de9bbf06b30535d734f0 (diff) | |
download | linux-7050a7c3747787c3f9ba94df59eb7e9e018bbdf2.tar.xz |
backlight: ipaq_micro: Make structure micro_bl_props constant
Static structure micro_bl_props, having type backlight_properties, is
used only once, when it is passed as the last argument to function
devm_backlight_device_register(). devm_backlight_device_register() is
defined with its last parameter being declared constant. Hence make
micro_bl_props itself constant as well.
Issue found with Coccinelle.
Signed-off-by: Nishka Dasgupta <nishkadg.linux@gmail.com>
Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/backlight/ipaq_micro_bl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/backlight/ipaq_micro_bl.c b/drivers/video/backlight/ipaq_micro_bl.c index 1123f67c12b3..85b16cc82878 100644 --- a/drivers/video/backlight/ipaq_micro_bl.c +++ b/drivers/video/backlight/ipaq_micro_bl.c @@ -44,7 +44,7 @@ static const struct backlight_ops micro_bl_ops = { .update_status = micro_bl_update_status, }; -static struct backlight_properties micro_bl_props = { +static const struct backlight_properties micro_bl_props = { .type = BACKLIGHT_RAW, .max_brightness = 255, .power = FB_BLANK_UNBLANK, |