]> Git Repo - linux.git/blobdiff - fs/squashfs/super.c
const: mark remaining super_operations const
[linux.git] / fs / squashfs / super.c
index cb5fc57e370be3babf4de90514fa89c2656f99f3..6c197ef53adda0e8300e416d1a13008fbfe4004a 100644 (file)
@@ -44,7 +44,7 @@
 #include "squashfs.h"
 
 static struct file_system_type squashfs_fs_type;
-static struct super_operations squashfs_super_ops;
+static const struct super_operations squashfs_super_ops;
 
 static int supported_squashfs_filesystem(short major, short minor, short comp)
 {
@@ -444,7 +444,7 @@ static struct file_system_type squashfs_fs_type = {
        .fs_flags = FS_REQUIRES_DEV
 };
 
-static struct super_operations squashfs_super_ops = {
+static const struct super_operations squashfs_super_ops = {
        .alloc_inode = squashfs_alloc_inode,
        .destroy_inode = squashfs_destroy_inode,
        .statfs = squashfs_statfs,
This page took 0.032181 seconds and 4 git commands to generate.