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

Commit 0cb5818a authored by Gustavo A. R. Silva's avatar Gustavo A. R. Silva Committed by Greg Kroah-Hartman
Browse files

usb: gadget: compress return logic into one line



Simplify return logic and avoid unnecessary variable assignment.

Signed-off-by: default avatarGustavo A. R. Silva <garsilva@embeddedor.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5468099c
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -102,10 +102,8 @@ static int ncm_do_config(struct usb_configuration *c)
	}

	f_ncm = usb_get_function(f_ncm_inst);
	if (IS_ERR(f_ncm)) {
		status = PTR_ERR(f_ncm);
		return status;
	}
	if (IS_ERR(f_ncm))
		return PTR_ERR(f_ncm);

	status = usb_add_function(c, f_ncm);
	if (status < 0) {