diff options
author | Len Brown <len.brown@intel.com> | 2009-04-05 07:51:16 +0200 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-04-05 07:51:16 +0200 |
commit | e2fae0abf6a9c7a2da1a481b7adb4e24f7778992 (patch) | |
tree | dbf0007632ca651baa9c7193b0ead3547c656c33 /drivers/acpi/ec.c | |
parent | Merge branches 'bugzilla-12461' and 'bugzilla-9998' into release (diff) | |
parent | video: build fix (diff) | |
download | linux-e2fae0abf6a9c7a2da1a481b7adb4e24f7778992.tar.xz linux-e2fae0abf6a9c7a2da1a481b7adb4e24f7778992.zip |
Merge branch 'constify' into release
Diffstat (limited to 'drivers/acpi/ec.c')
-rw-r--r-- | drivers/acpi/ec.c | 2 |
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, |