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

Commit a3e7c092 authored by Wayne Porter's avatar Wayne Porter Committed by Greg Kroah-Hartman
Browse files

staging: rts5208: ms.c: Braces fix



Add braces to all arms of if statement

Signed-off-by: default avatarWayne Porter <wporter82@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 36e32ee5
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -805,9 +805,9 @@ static int ms_confirm_cpu_startup(struct rtsx_chip *chip)
	}
	}


	if (val & INT_REG_ERR) {
	if (val & INT_REG_ERR) {
		if (val & INT_REG_CMDNK)
		if (val & INT_REG_CMDNK) {
			chip->card_wp |= (MS_CARD);
			chip->card_wp |= (MS_CARD);
		else {
		} else {
			rtsx_trace(chip);
			rtsx_trace(chip);
			return STATUS_FAIL;
			return STATUS_FAIL;
		}
		}