Commit a9da8f60 authored by Art Haas's avatar Art Haas Committed by Linus Torvalds

[PATCH] designated initializer patches fs_freevxfs

  Here's a C99 designated initializer patch for fs/freevxfs. The
  patch is against 2.5.35.
parent 47983411
...@@ -235,11 +235,11 @@ static struct super_block *vxfs_get_sb(struct file_system_type *fs_type, ...@@ -235,11 +235,11 @@ static struct super_block *vxfs_get_sb(struct file_system_type *fs_type,
} }
static struct file_system_type vxfs_fs_type = { static struct file_system_type vxfs_fs_type = {
owner: THIS_MODULE, .owner = THIS_MODULE,
name: "vxfs", .name = "vxfs",
get_sb: vxfs_get_sb, .get_sb = vxfs_get_sb,
kill_sb: kill_block_super, .kill_sb = kill_block_super,
fs_flags: FS_REQUIRES_DEV, .fs_flags = FS_REQUIRES_DEV,
}; };
static int __init static int __init
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment