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/irlmp.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/irlmp.c')
-rw-r--r-- | net/irda/irlmp.c | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/net/irda/irlmp.c b/net/irda/irlmp.c index 7efa930ed684..7db92ced2c02 100644 --- a/net/irda/irlmp.c +++ b/net/irda/irlmp.c | |||
@@ -2003,27 +2003,10 @@ static const struct seq_operations irlmp_seq_ops = { | |||
2003 | 2003 | ||
2004 | static int irlmp_seq_open(struct inode *inode, struct file *file) | 2004 | static int irlmp_seq_open(struct inode *inode, struct file *file) |
2005 | { | 2005 | { |
2006 | struct seq_file *seq; | ||
2007 | int rc = -ENOMEM; | ||
2008 | struct irlmp_iter_state *s; | ||
2009 | |||
2010 | IRDA_ASSERT(irlmp != NULL, return -EINVAL;); | 2006 | IRDA_ASSERT(irlmp != NULL, return -EINVAL;); |
2011 | 2007 | ||
2012 | s = kmalloc(sizeof(*s), GFP_KERNEL); | 2008 | return seq_open_private(file, &irlmp_seq_ops, |
2013 | if (!s) | 2009 | sizeof(struct irlmp_iter_state)); |
2014 | goto out; | ||
2015 | |||
2016 | rc = seq_open(file, &irlmp_seq_ops); | ||
2017 | if (rc) | ||
2018 | goto out_kfree; | ||
2019 | |||
2020 | seq = file->private_data; | ||
2021 | seq->private = s; | ||
2022 | out: | ||
2023 | return rc; | ||
2024 | out_kfree: | ||
2025 | kfree(s); | ||
2026 | goto out; | ||
2027 | } | 2010 | } |
2028 | 2011 | ||
2029 | const struct file_operations irlmp_seq_fops = { | 2012 | const struct file_operations irlmp_seq_fops = { |