diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2009-09-21 17:01:10 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-22 07:17:24 -0700 |
commit | 7f09410bbc4306f592cfb43812389ea1c7905a20 (patch) | |
tree | 18f179435f70c4ec9231883501062d5ea0357af5 /fs/omfs/file.c | |
parent | ac4cfdd6d141c319a7af8655f750ed504c187a74 (diff) | |
download | linux-3.10-7f09410bbc4306f592cfb43812389ea1c7905a20.tar.gz linux-3.10-7f09410bbc4306f592cfb43812389ea1c7905a20.tar.bz2 linux-3.10-7f09410bbc4306f592cfb43812389ea1c7905a20.zip |
const: mark remaining address_space_operations const
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/omfs/file.c')
-rw-r--r-- | fs/omfs/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/omfs/file.c b/fs/omfs/file.c index d17e774eaf4..b707fa5396b 100644 --- a/fs/omfs/file.c +++ b/fs/omfs/file.c @@ -337,7 +337,7 @@ struct inode_operations omfs_file_inops = { .truncate = omfs_truncate }; -struct address_space_operations omfs_aops = { +const struct address_space_operations omfs_aops = { .readpage = omfs_readpage, .readpages = omfs_readpages, .writepage = omfs_writepage, |