Commit 03a93e51 authored by Art Haas's avatar Art Haas Committed by Andy Grover

[PATCH] C99 designated initializers for arch/s390x

parent f7f71ca5
......@@ -150,10 +150,10 @@ DECLARE_MUTEX(debug_lock);
static int initialized;
static struct file_operations debug_file_ops = {
read: debug_output,
write: debug_input,
open: debug_open,
release: debug_close,
.read = debug_output,
.write = debug_input,
.open = debug_open,
.release = debug_close,
};
static struct proc_dir_entry *debug_proc_root_entry;
......
......@@ -547,8 +547,8 @@ static void c_stop(struct seq_file *m, void *v)
{
}
struct seq_operations cpuinfo_op = {
start: c_start,
next: c_next,
stop: c_stop,
show: show_cpuinfo,
.start = c_start,
.next = c_next,
.stop = c_stop,
.show = show_cpuinfo,
};
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