Commit 39d48bb0 authored by Erik Jones's avatar Erik Jones Committed by Greg Kroah-Hartman

staging: rts5139: rts51x_card: fixed brace coding style issue

Fixed a coding style issue.
Signed-off-by: default avatarErik Jones <erik@ejnode.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8405f041
......@@ -211,13 +211,12 @@ static void card_cd_debounce(struct rts51x_chip *chip, u8 *need_reset,
release_map |= MS_CARD;
}
} else {
if (chip->card_status & XD_CD) {
if (chip->card_status & XD_CD)
reset_map |= XD_CARD;
} else if (chip->card_status & SD_CD) {
else if (chip->card_status & SD_CD)
reset_map |= SD_CARD;
} else if (chip->card_status & MS_CD) {
else if (chip->card_status & MS_CD)
reset_map |= MS_CARD;
}
}
if (CHECK_PKG(chip, QFN24) && reset_map) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment