Commit a61dafcd authored by Art Haas's avatar Art Haas Committed by David S. Miller

[PATCH] C99 initiailzers for fs/intermezzo

parent 96ee9c93
...@@ -81,11 +81,11 @@ static int presto_e2_has_all_data(struct inode *inode) ...@@ -81,11 +81,11 @@ static int presto_e2_has_all_data(struct inode *inode)
} }
struct journal_ops presto_ext2_journal_ops = { struct journal_ops presto_ext2_journal_ops = {
tr_all_data: presto_e2_has_all_data, .tr_all_data = presto_e2_has_all_data,
tr_avail: presto_e2_freespace, .tr_avail = presto_e2_freespace,
tr_start: presto_e2_trans_start, .tr_start = presto_e2_trans_start,
tr_commit: presto_e2_trans_commit, .tr_commit = presto_e2_trans_commit,
tr_journal_data: NULL .tr_journal_data = NULL
}; };
#endif /* CONFIG_EXT2_FS */ #endif /* CONFIG_EXT2_FS */
...@@ -97,13 +97,13 @@ static int presto_tmpfs_has_all_data(struct inode *inode) ...@@ -97,13 +97,13 @@ static int presto_tmpfs_has_all_data(struct inode *inode)
} }
struct journal_ops presto_tmpfs_journal_ops = { struct journal_ops presto_tmpfs_journal_ops = {
tr_all_data: presto_tmpfs_has_all_data, .tr_all_data = presto_tmpfs_has_all_data,
tr_avail: presto_tmpfs_freespace, .tr_avail = presto_tmpfs_freespace,
tr_start: presto_tmpfs_trans_start, .tr_start = presto_tmpfs_trans_start,
tr_commit: presto_tmpfs_trans_commit, .tr_commit = presto_tmpfs_trans_commit,
tr_journal_data: presto_tmpfs_journal_file_data, .tr_journal_data = presto_tmpfs_journal_file_data,
tr_ilookup: presto_tmpfs_ilookup, .tr_ilookup = presto_tmpfs_ilookup,
tr_add_ilookup: presto_add_ilookup_dentry .tr_add_ilookup = presto_add_ilookup_dentry
}; };
#endif /* CONFIG_EXT3_FS */ #endif /* CONFIG_EXT3_FS */
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