diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2009-08-15 06:57:48 -0400 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2009-08-22 04:54:51 -0400 |
commit | 8c6866b071cb242584df287dbd342e5815e8407f (patch) | |
tree | ee4f90f15c1e0472f0d0873595f130d580fb296e /fs/ubifs | |
parent | 887ee17117fd23e962332b353d250ac9e090b20f (diff) |
UBIFS: constify file and inode operations
This patch adds 'const' qualifier to UBIFS xattr inode and file
operations.
Pointed-out-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'fs/ubifs')
-rw-r--r-- | fs/ubifs/xattr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ubifs/xattr.c b/fs/ubifs/xattr.c index adafcf556531..7998cc378250 100644 --- a/fs/ubifs/xattr.c +++ b/fs/ubifs/xattr.c | |||
@@ -78,9 +78,9 @@ enum { | |||
78 | SECURITY_XATTR, | 78 | SECURITY_XATTR, |
79 | }; | 79 | }; |
80 | 80 | ||
81 | static struct inode_operations none_inode_operations; | 81 | static const struct inode_operations none_inode_operations; |
82 | static struct address_space_operations none_address_operations; | 82 | static struct address_space_operations none_address_operations; |
83 | static struct file_operations none_file_operations; | 83 | static const struct file_operations none_file_operations; |
84 | 84 | ||
85 | /** | 85 | /** |
86 | * create_xattr - create an extended attribute. | 86 | * create_xattr - create an extended attribute. |