Commit f45e66e7 authored by Art Haas's avatar Art Haas Committed by Jeff Garzik

[PATCH] C99 designated initializer patch for fs/exportfs

parent 48b7cb82
......@@ -514,12 +514,12 @@ static struct dentry *export_decode_fh(struct super_block *sb, __u32 *fh, int fh
}
struct export_operations export_op_default = {
decode_fh: export_decode_fh,
encode_fh: export_encode_fh,
.decode_fh = export_decode_fh,
.encode_fh = export_encode_fh,
get_name: get_name,
get_parent: get_parent,
get_dentry: get_object,
.get_name = get_name,
.get_parent = get_parent,
.get_dentry = get_object,
};
EXPORT_SYMBOL(export_op_default);
......
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