summaryrefslogtreecommitdiffstats
path: root/drivers/acpi/ec.c
diff options
context:
space:
mode:
authorLen Brown2009-04-05 07:51:16 +0200
committerLen Brown2009-04-05 07:51:16 +0200
commite2fae0abf6a9c7a2da1a481b7adb4e24f7778992 (patch)
treedbf0007632ca651baa9c7193b0ead3547c656c33 /drivers/acpi/ec.c
parentMerge branches 'bugzilla-12461' and 'bugzilla-9998' into release (diff)
parentvideo: build fix (diff)
downloadkernel-qcow2-linux-e2fae0abf6a9c7a2da1a481b7adb4e24f7778992.tar.gz
kernel-qcow2-linux-e2fae0abf6a9c7a2da1a481b7adb4e24f7778992.tar.xz
kernel-qcow2-linux-e2fae0abf6a9c7a2da1a481b7adb4e24f7778992.zip
Merge branch 'constify' into release
Diffstat (limited to 'drivers/acpi/ec.c')
-rw-r--r--drivers/acpi/ec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c
index 03107bce03ed..04e90443eff7 100644
--- a/drivers/acpi/ec.c
+++ b/drivers/acpi/ec.c
@@ -682,7 +682,7 @@ static int acpi_ec_info_open_fs(struct inode *inode, struct file *file)
return single_open(file, acpi_ec_read_info, PDE(inode)->data);
}
-static struct file_operations acpi_ec_info_ops = {
+static const struct file_operations acpi_ec_info_ops = {
.open = acpi_ec_info_open_fs,
.read = seq_read,
.llseek = seq_lseek,