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