aboutsummaryrefslogtreecommitdiffstats
path: root/net/irda/irlmp.c
diff options
context:
space:
mode:
authorPavel Emelyanov <xemul@openvz.org>2007-10-10 05:30:45 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 19:55:35 -0400
commita662d4cb50d3976d2c9c9bac34119d0036e31d21 (patch)
treee232a83f4711fff91ae6d1296c76ebb3cb44f113 /net/irda/irlmp.c
parent31164088d72e1420e53f742b6c0c06f7343551dc (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.c21
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
2004static int irlmp_seq_open(struct inode *inode, struct file *file) 2004static 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;
2022out:
2023 return rc;
2024out_kfree:
2025 kfree(s);
2026 goto out;
2027} 2010}
2028 2011
2029const struct file_operations irlmp_seq_fops = { 2012const struct file_operations irlmp_seq_fops = {