diff options
author | Pavel Emelyanov <xemul@openvz.org> | 2007-10-10 05:30:45 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:55:35 -0400 |
commit | a662d4cb50d3976d2c9c9bac34119d0036e31d21 (patch) | |
tree | e232a83f4711fff91ae6d1296c76ebb3cb44f113 /net/irda/irttp.c | |
parent | 31164088d72e1420e53f742b6c0c06f7343551dc (diff) |
[IRDA]: Make the IRDA use the seq_open_private()
Just switch to the consolidated code
Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/irda/irttp.c')
-rw-r--r-- | net/irda/irttp.c | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/net/irda/irttp.c b/net/irda/irttp.c index 3d7ab03fb131..1311976c9dfe 100644 --- a/net/irda/irttp.c +++ b/net/irda/irttp.c | |||
@@ -1884,25 +1884,8 @@ static const struct seq_operations irttp_seq_ops = { | |||
1884 | 1884 | ||
1885 | static int irttp_seq_open(struct inode *inode, struct file *file) | 1885 | static int irttp_seq_open(struct inode *inode, struct file *file) |
1886 | { | 1886 | { |
1887 | struct seq_file *seq; | 1887 | return seq_open_private(file, &irttp_seq_ops, |
1888 | int rc = -ENOMEM; | 1888 | sizeof(struct irttp_iter_state)); |
1889 | struct irttp_iter_state *s; | ||
1890 | |||
1891 | s = kzalloc(sizeof(*s), GFP_KERNEL); | ||
1892 | if (!s) | ||
1893 | goto out; | ||
1894 | |||
1895 | rc = seq_open(file, &irttp_seq_ops); | ||
1896 | if (rc) | ||
1897 | goto out_kfree; | ||
1898 | |||
1899 | seq = file->private_data; | ||
1900 | seq->private = s; | ||
1901 | out: | ||
1902 | return rc; | ||
1903 | out_kfree: | ||
1904 | kfree(s); | ||
1905 | goto out; | ||
1906 | } | 1889 | } |
1907 | 1890 | ||
1908 | const struct file_operations irttp_seq_fops = { | 1891 | const struct file_operations irttp_seq_fops = { |