diff options
author | Paul Mackerras <paulus@samba.org> | 2008-03-13 00:26:33 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-03-13 00:26:33 -0400 |
commit | bed04a4413376265746053be2a9cfbfc80c98ec9 (patch) | |
tree | 8f582294a655f70496cd08aedeb86de31dbad140 /net/x25/x25_proc.c | |
parent | e37c772e36a7943b2e0bd8f48312e78474c0df15 (diff) | |
parent | c463be3520065ef8c05e3cbdf946c69604e91ceb (diff) |
Merge branch 'linux-2.6'
Diffstat (limited to 'net/x25/x25_proc.c')
-rw-r--r-- | net/x25/x25_proc.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/net/x25/x25_proc.c b/net/x25/x25_proc.c index 3f52b09bed03..1afa44d25beb 100644 --- a/net/x25/x25_proc.c +++ b/net/x25/x25_proc.c | |||
@@ -312,20 +312,18 @@ int __init x25_proc_init(void) | |||
312 | if (!x25_proc_dir) | 312 | if (!x25_proc_dir) |
313 | goto out; | 313 | goto out; |
314 | 314 | ||
315 | p = create_proc_entry("route", S_IRUGO, x25_proc_dir); | 315 | p = proc_create("route", S_IRUGO, x25_proc_dir, &x25_seq_route_fops); |
316 | if (!p) | 316 | if (!p) |
317 | goto out_route; | 317 | goto out_route; |
318 | p->proc_fops = &x25_seq_route_fops; | ||
319 | 318 | ||
320 | p = create_proc_entry("socket", S_IRUGO, x25_proc_dir); | 319 | p = proc_create("socket", S_IRUGO, x25_proc_dir, &x25_seq_socket_fops); |
321 | if (!p) | 320 | if (!p) |
322 | goto out_socket; | 321 | goto out_socket; |
323 | p->proc_fops = &x25_seq_socket_fops; | ||
324 | 322 | ||
325 | p = create_proc_entry("forward", S_IRUGO, x25_proc_dir); | 323 | p = proc_create("forward", S_IRUGO, x25_proc_dir, |
324 | &x25_seq_forward_fops); | ||
326 | if (!p) | 325 | if (!p) |
327 | goto out_forward; | 326 | goto out_forward; |
328 | p->proc_fops = &x25_seq_forward_fops; | ||
329 | rc = 0; | 327 | rc = 0; |
330 | 328 | ||
331 | out: | 329 | out: |