Commit 8d1f37c2 authored by Art Haas's avatar Art Haas Committed by Christoph Hellwig

[PATCH] C99 initializers for fs/proc/proc_misc.c

parent c98ba649
......@@ -339,10 +339,10 @@ static int diskstats_open(struct inode *inode, struct file *file)
return seq_open(file, &diskstats_op);
}
static struct file_operations proc_diskstats_operations = {
open: diskstats_open,
read: seq_read,
llseek: seq_lseek,
release: seq_release,
.open = diskstats_open,
.read = seq_read,
.llseek = seq_lseek,
.release = seq_release,
};
#ifdef CONFIG_MODULES
......
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