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