diff options
author | Len Brown <len.brown@intel.com> | 2009-04-05 01:51:16 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-04-05 01:51:16 -0400 |
commit | e2fae0abf6a9c7a2da1a481b7adb4e24f7778992 (patch) | |
tree | dbf0007632ca651baa9c7193b0ead3547c656c33 /drivers/acpi/ec.c | |
parent | fff251f6b26bb8f4de15fa5906cf2611623b3661 (diff) | |
parent | c07c9a78a95cab0a9bf0b253d0c52e7798af38c5 (diff) |
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, |