VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   55 Tags
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 parent: ac4cfdd6d141c319a7af8655f750ed504c187a74
Commit Summary:
const: mark remaining address_space_operations const
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/fs/omfs/file.c b/fs/omfs/file.c
index d17e774eaf45..b707fa5396b7 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,