diff options
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 = { |