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

Commit 383b7fc2 authored by William Blair's avatar William Blair Committed by Greg Kroah-Hartman
Browse files

Staging: keucr: init: fixed a brace coding style issue



Fixed a coding style issue.

Signed-off-by: default avatarWilliam Blair <wdblair@bu.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4bce6b89
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -30,10 +30,9 @@ int ENE_InitMedia(struct us_data *us)
	if (MiscReg03 & 0x02) {
		if (!us->SM_Status.Ready && !us->MS_Status.Ready) {
			result = ENE_SMInit(us);
			if (result != USB_STOR_XFER_GOOD) {
			if (result != USB_STOR_XFER_GOOD)
				return USB_STOR_TRANSPORT_ERROR;
		}
		}

	}
	return result;