Commit 9514a176 authored by Art Haas's avatar Art Haas Committed by Andy Grover

[PATCH] C99 designated initializers for arch/s390

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