Commit 3af4da16 authored by YueHaibing's avatar YueHaibing Committed by Kalle Valo

hostap: convert to struct proc_ops

commit 97a32539 ("proc: convert everything to "struct proc_ops"")
forget do this convering for prism2_download_aux_dump_proc_fops.

Fixes: 97a32539 ("proc: convert everything to "struct proc_ops"")
Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20200326032432.20384-1-yuehaibing@huawei.com
parent 2542469d
...@@ -232,11 +232,11 @@ static int prism2_download_aux_dump_proc_open(struct inode *inode, struct file * ...@@ -232,11 +232,11 @@ static int prism2_download_aux_dump_proc_open(struct inode *inode, struct file *
return ret; return ret;
} }
static const struct file_operations prism2_download_aux_dump_proc_fops = { static const struct proc_ops prism2_download_aux_dump_proc_ops = {
.open = prism2_download_aux_dump_proc_open, .proc_open = prism2_download_aux_dump_proc_open,
.read = seq_read, .proc_read = seq_read,
.llseek = seq_lseek, .proc_lseek = seq_lseek,
.release = seq_release_private, .proc_release = seq_release_private,
}; };
......
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