diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2009-01-15 10:43:23 -0500 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2009-01-18 07:05:08 -0500 |
commit | e8b815663b1bfd9c255af5176604ec0eafdf6ed7 (patch) | |
tree | 63eea164bed606905200177f18391238102bda40 /fs/ubifs/super.c | |
parent | dedb0d48a9d4d57086526b94a4b64da789a646e4 (diff) |
UBIFS: constify operations
Mark super, file, and inode operation structcutes with 'const'.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'fs/ubifs/super.c')
-rw-r--r-- | fs/ubifs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c index a7fc97f4d9de..53811e567a69 100644 --- a/fs/ubifs/super.c +++ b/fs/ubifs/super.c | |||
@@ -1778,7 +1778,7 @@ static int ubifs_remount_fs(struct super_block *sb, int *flags, char *data) | |||
1778 | return 0; | 1778 | return 0; |
1779 | } | 1779 | } |
1780 | 1780 | ||
1781 | struct super_operations ubifs_super_operations = { | 1781 | const struct super_operations ubifs_super_operations = { |
1782 | .alloc_inode = ubifs_alloc_inode, | 1782 | .alloc_inode = ubifs_alloc_inode, |
1783 | .destroy_inode = ubifs_destroy_inode, | 1783 | .destroy_inode = ubifs_destroy_inode, |
1784 | .put_super = ubifs_put_super, | 1784 | .put_super = ubifs_put_super, |