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

Commit 0a58f474 authored by Colin Ian King's avatar Colin Ian King Committed by David S. Miller
Browse files

kcm: remove redundant -ve error check and return path



The check for a -ve error is redundant, remove it and just
immediately return the return value from the call to
seq_open_net.

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ea06f717
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -88,13 +88,9 @@ struct kcm_proc_mux_state {
static int kcm_seq_open(struct inode *inode, struct file *file)
{
	struct kcm_seq_muxinfo *muxinfo = PDE_DATA(inode);
	int err;

	err = seq_open_net(inode, file, &muxinfo->seq_ops,
	return seq_open_net(inode, file, &muxinfo->seq_ops,
			   sizeof(struct kcm_proc_mux_state));
	if (err < 0)
		return err;
	return err;
}

static void kcm_format_mux_header(struct seq_file *seq)