More C99 initializers fixes in ncpfs. By Art Haas <ahaas@neosoft.com>
}
static struct inode_operations ncp_symlink_inode_operations = {
- readlink: page_readlink,
- follow_link: page_follow_link,
- setattr: ncp_notify_change,
+ .readlink = page_readlink,
+ .follow_link = page_follow_link,
+ .setattr = ncp_notify_change,
};
/*
static struct vm_operations_struct ncp_file_mmap =
{
- nopage: ncp_file_mmap_nopage,
+ .nopage = ncp_file_mmap_nopage,
};
* symlinks can't do much...
*/
struct address_space_operations ncp_symlink_aops = {
- readpage: ncp_symlink_readpage,
+ .readpage = ncp_symlink_readpage,
};
/* ----- create a new symbolic link -------------------------------------- */