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:
parent
36e32ee542
commit
a3e7c0928b
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue