[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>
这个提交包含在:
@@ -1884,25 +1884,8 @@ static const struct seq_operations irttp_seq_ops = {
|
||||
|
||||
static int irttp_seq_open(struct inode *inode, struct file *file)
|
||||
{
|
||||
struct seq_file *seq;
|
||||
int rc = -ENOMEM;
|
||||
struct irttp_iter_state *s;
|
||||
|
||||
s = kzalloc(sizeof(*s), GFP_KERNEL);
|
||||
if (!s)
|
||||
goto out;
|
||||
|
||||
rc = seq_open(file, &irttp_seq_ops);
|
||||
if (rc)
|
||||
goto out_kfree;
|
||||
|
||||
seq = file->private_data;
|
||||
seq->private = s;
|
||||
out:
|
||||
return rc;
|
||||
out_kfree:
|
||||
kfree(s);
|
||||
goto out;
|
||||
return seq_open_private(file, &irttp_seq_ops,
|
||||
sizeof(struct irttp_iter_state));
|
||||
}
|
||||
|
||||
const struct file_operations irttp_seq_fops = {
|
||||
|
在新工单中引用
屏蔽一个用户