Commit 6e23d74a authored by Luca Tettamanti's avatar Luca Tettamanti Committed by Linus Torvalds

[PATCH] C99 designated initializer for fs/coda

parent 3ef3aca5
...@@ -26,9 +26,9 @@ inline int coda_isnullfid(ViceFid *fid) ...@@ -26,9 +26,9 @@ inline int coda_isnullfid(ViceFid *fid)
} }
static struct inode_operations coda_symlink_inode_operations = { static struct inode_operations coda_symlink_inode_operations = {
readlink: page_readlink, .readlink = page_readlink,
follow_link: page_follow_link, .follow_link = page_follow_link,
setattr: coda_setattr, .setattr = coda_setattr,
}; };
/* cnode.c */ /* cnode.c */
......
...@@ -353,13 +353,13 @@ static int coda_psdev_release(struct inode * inode, struct file * file) ...@@ -353,13 +353,13 @@ static int coda_psdev_release(struct inode * inode, struct file * file)
static struct file_operations coda_psdev_fops = { static struct file_operations coda_psdev_fops = {
owner: THIS_MODULE, .owner = THIS_MODULE,
read: coda_psdev_read, .read = coda_psdev_read,
write: coda_psdev_write, .write = coda_psdev_write,
poll: coda_psdev_poll, .poll = coda_psdev_poll,
ioctl: coda_psdev_ioctl, .ioctl = coda_psdev_ioctl,
open: coda_psdev_open, .open = coda_psdev_open,
release: coda_psdev_release, .release = coda_psdev_release,
}; };
static devfs_handle_t devfs_handle; static devfs_handle_t devfs_handle;
......
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