backlight: constify backlight_ops
backlight_device_register has been expecting a const "ops" argument, and using
it as such, since 9905a43b2d. Let's make the
remaining backlight_ops instances const.
Inspired by hunks of the grsecurity patch, updated for newer kernels.
Signed-off-by: Lionel Debroux <lionel_debroux@yahoo.fr>
Acked-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
committed by
Jiri Kosina
parent
073ef1f6e5
commit
acc2472ed3
@@ -128,7 +128,7 @@ static int radeon_bl_get_brightness(struct backlight_device *bd)
|
||||
return bd->props.brightness;
|
||||
}
|
||||
|
||||
static struct backlight_ops radeon_bl_data = {
|
||||
static const struct backlight_ops radeon_bl_data = {
|
||||
.get_brightness = radeon_bl_get_brightness,
|
||||
.update_status = radeon_bl_update_status,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user