diff options
-rw-r--r-- | net/ipx/ipx_proc.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/net/ipx/ipx_proc.c b/net/ipx/ipx_proc.c index d483a00dc427..5ed97ad0e2e3 100644 --- a/net/ipx/ipx_proc.c +++ b/net/ipx/ipx_proc.c | |||
@@ -358,22 +358,19 @@ int __init ipx_proc_init(void) | |||
358 | 358 | ||
359 | if (!ipx_proc_dir) | 359 | if (!ipx_proc_dir) |
360 | goto out; | 360 | goto out; |
361 | p = create_proc_entry("interface", S_IRUGO, ipx_proc_dir); | 361 | p = proc_create("interface", S_IRUGO, |
362 | ipx_proc_dir, &ipx_seq_interface_fops); | ||
362 | if (!p) | 363 | if (!p) |
363 | goto out_interface; | 364 | goto out_interface; |
364 | 365 | ||
365 | p->proc_fops = &ipx_seq_interface_fops; | 366 | p = proc_create("route", S_IRUGO, ipx_proc_dir, &ipx_seq_route_fops); |
366 | p = create_proc_entry("route", S_IRUGO, ipx_proc_dir); | ||
367 | if (!p) | 367 | if (!p) |
368 | goto out_route; | 368 | goto out_route; |
369 | 369 | ||
370 | p->proc_fops = &ipx_seq_route_fops; | 370 | p = proc_create("socket", S_IRUGO, ipx_proc_dir, &ipx_seq_socket_fops); |
371 | p = create_proc_entry("socket", S_IRUGO, ipx_proc_dir); | ||
372 | if (!p) | 371 | if (!p) |
373 | goto out_socket; | 372 | goto out_socket; |
374 | 373 | ||
375 | p->proc_fops = &ipx_seq_socket_fops; | ||
376 | |||
377 | rc = 0; | 374 | rc = 0; |
378 | out: | 375 | out: |
379 | return rc; | 376 | return rc; |