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:
Lionel Debroux
2010-11-16 14:14:02 +01:00
committed by Jiri Kosina
父節點 073ef1f6e5
當前提交 acc2472ed3
共有 24 個文件被更改,包括 26 次插入26 次删除

查看文件

@@ -155,7 +155,7 @@ out:
return -EINVAL;
}
static struct backlight_ops pm860x_backlight_ops = {
static const struct backlight_ops pm860x_backlight_ops = {
.options = BL_CORE_SUSPENDRESUME,
.update_status = pm860x_backlight_update_status,
.get_brightness = pm860x_backlight_get_brightness,