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

[PATCH] C99 initializers for drivers/telephony

parent fcf34d2b
......@@ -6765,13 +6765,13 @@ static int ixj_fasync(int fd, struct file *file_p, int mode)
struct file_operations ixj_fops =
{
owner: THIS_MODULE,
read: ixj_enhanced_read,
write: ixj_enhanced_write,
poll: ixj_poll,
ioctl: ixj_ioctl,
release: ixj_release,
fasync: ixj_fasync
.owner = THIS_MODULE,
.read = ixj_enhanced_read,
.write = ixj_enhanced_write,
.poll = ixj_poll,
.ioctl = ixj_ioctl,
.release = ixj_release,
.fasync = ixj_fasync
};
static int ixj_linetest(IXJ *j)
......
......@@ -135,8 +135,8 @@ void phone_unregister_device(struct phone_device *pfd)
static struct file_operations phone_fops =
{
owner: THIS_MODULE,
open: phone_open,
.owner = THIS_MODULE,
.open = phone_open,
};
/*
......
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