Commit eb481d7f authored by Chris Wright's avatar Chris Wright Committed by Linus Torvalds

[RXRPC]: Put file_operations THIS_OWNER in correct place.

parent 1bdbda8c
...@@ -52,7 +52,6 @@ static void rxrpc_proc_peers_stop(struct seq_file *p, void *v); ...@@ -52,7 +52,6 @@ static void rxrpc_proc_peers_stop(struct seq_file *p, void *v);
static int rxrpc_proc_peers_show(struct seq_file *m, void *v); static int rxrpc_proc_peers_show(struct seq_file *m, void *v);
static struct seq_operations rxrpc_proc_peers_ops = { static struct seq_operations rxrpc_proc_peers_ops = {
.owner = THIS_MODULE,
.start = rxrpc_proc_peers_start, .start = rxrpc_proc_peers_start,
.next = rxrpc_proc_peers_next, .next = rxrpc_proc_peers_next,
.stop = rxrpc_proc_peers_stop, .stop = rxrpc_proc_peers_stop,
...@@ -102,6 +101,7 @@ static struct seq_operations rxrpc_proc_calls_ops = { ...@@ -102,6 +101,7 @@ static struct seq_operations rxrpc_proc_calls_ops = {
}; };
static struct file_operations rxrpc_proc_calls_fops = { static struct file_operations rxrpc_proc_calls_fops = {
.owner = THIS_MODULE,
.open = rxrpc_proc_calls_open, .open = rxrpc_proc_calls_open,
.read = seq_read, .read = seq_read,
.llseek = seq_lseek, .llseek = seq_lseek,
......
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