Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 171ef917 authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by Linus Torvalds
Browse files

fs/proc/array.c: delete children_seq_release()

parent 20d28cde
Loading
Loading
Loading
Loading
+1 −7
Original line number Diff line number Diff line
@@ -736,16 +736,10 @@ static int children_seq_open(struct inode *inode, struct file *file)
	return ret;
}

int children_seq_release(struct inode *inode, struct file *file)
{
	seq_release(inode, file);
	return 0;
}

const struct file_operations proc_tid_children_operations = {
	.open    = children_seq_open,
	.read    = seq_read,
	.llseek  = seq_lseek,
	.release = children_seq_release,
	.release = seq_release,
};
#endif /* CONFIG_PROC_CHILDREN */