Skip to content

Commit

Permalink
staging: rts5139: rts51x_card: fixed brace coding style issue
Browse files Browse the repository at this point in the history
Fixed a coding style issue.

Signed-off-by: Erik Jones <erik@ejnode.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Erik Jones authored and Greg Kroah-Hartman committed Jul 17, 2012
1 parent 8405f04 commit 39d48bb
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions drivers/staging/rts5139/rts51x_card.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 39d48bb

Please sign in to comment.