mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-20 16:46:23 +08:00
sctp: use proc_create()
create_proc_entry() is deprecated (not formally, though). Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: Vlad Yasevich <vladislav.yasevich@hp.com>
This commit is contained in:
parent
dadb50cc1a
commit
d71a09ed55
@ -512,10 +512,8 @@ int __init sctp_remaddr_proc_init(void)
|
||||
{
|
||||
struct proc_dir_entry *p;
|
||||
|
||||
p = create_proc_entry("remaddr", S_IRUGO, proc_net_sctp);
|
||||
p = proc_create("remaddr", S_IRUGO, proc_net_sctp, &sctp_remaddr_seq_fops);
|
||||
if (!p)
|
||||
return -ENOMEM;
|
||||
p->proc_fops = &sctp_remaddr_seq_fops;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user