staging: rts5208: ms.c: Braces fix

Add braces to all arms of if statement

Signed-off-by: Wayne Porter <wporter82@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Wayne Porter 2016-10-11 21:56:56 +00:00 committed by Greg Kroah-Hartman
parent 36e32ee542
commit a3e7c0928b

View file

@ -805,9 +805,9 @@ static int ms_confirm_cpu_startup(struct rtsx_chip *chip)
}
if (val & INT_REG_ERR) {
if (val & INT_REG_CMDNK)
if (val & INT_REG_CMDNK) {
chip->card_wp |= (MS_CARD);
else {
} else {
rtsx_trace(chip);
return STATUS_FAIL;
}