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

Commit af53ce41 authored by David Kershner's avatar David Kershner Committed by Greg Kroah-Hartman
Browse files

staging: unisys: visorbus: Split else if blocks into multiple if.



Visorbus_configure had a block of "else if" clauses at the beginning of the
function. Simplify this to just being "if" clauses since each code block
ended with a goto.

Signed-off-by: default avatarDavid Kershner <david.kershner@unisys.com>
Reviewed-by: default avatarTim Sell <timothy.sell@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4d77e606
Loading
Loading
Loading
Loading
+4 −2
Original line number Original line Diff line number Diff line
@@ -717,10 +717,12 @@ static int visorbus_configure(struct controlvm_message *inmsg,
	if (!bus_info) {
	if (!bus_info) {
		err = -EINVAL;
		err = -EINVAL;
		goto err_respond;
		goto err_respond;
	} else if (bus_info->state.created == 0) {
	}
	if (bus_info->state.created == 0) {
		err = -EINVAL;
		err = -EINVAL;
		goto err_respond;
		goto err_respond;
	} else if (bus_info->pending_msg_hdr) {
	}
	if (bus_info->pending_msg_hdr) {
		err = -EIO;
		err = -EIO;
		goto err_respond;
		goto err_respond;
	}
	}