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

[PATCH] C99 initializers for drivers/message/i2o/i2o_config.c

parent 14f7031c
......@@ -904,14 +904,14 @@ static int cfg_fasync(int fd, struct file *fp, int on)
static struct file_operations config_fops =
{
owner: THIS_MODULE,
llseek: no_llseek,
read: cfg_read,
write: cfg_write,
ioctl: cfg_ioctl,
open: cfg_open,
release: cfg_release,
fasync: cfg_fasync,
.owner = THIS_MODULE,
.llseek = no_llseek,
.read = cfg_read,
.write = cfg_write,
.ioctl = cfg_ioctl,
.open = cfg_open,
.release = cfg_release,
.fasync = cfg_fasync,
};
static struct miscdevice i2o_miscdev = {
......
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