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
parent 073ef1f6e5
commit acc2472ed3
24 changed files with 26 additions and 26 deletions

View File

@@ -546,7 +546,7 @@ out:
return buffer->output[1];
}
static struct backlight_ops dell_ops = {
static const struct backlight_ops dell_ops = {
.get_brightness = dell_get_intensity,
.update_status = dell_send_intensity,
};