From: Toshiaki Yamane Date: Fri, 7 Sep 2012 04:34:00 +0000 (+0900) Subject: staging/rts_pstor: remove braces {} in sd.c (sd_pull_ctl_enable) X-Git-Tag: next-20120911~21^2~60 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=30b717e205c7ab5c7df0e12cfeaad9eec69e3fcb;p=karo-tx-linux.git staging/rts_pstor: remove braces {} in sd.c (sd_pull_ctl_enable) fixed below checkpatch warnings. -WARNING: braces {} are not necessary for single statement blocks Signed-off-by: Toshiaki Yamane Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rts_pstor/sd.c b/drivers/staging/rts_pstor/sd.c index 667e93d0a6a7..fa8cc86d09b4 100644 --- a/drivers/staging/rts_pstor/sd.c +++ b/drivers/staging/rts_pstor/sd.c @@ -2040,9 +2040,8 @@ int sd_pull_ctl_enable(struct rtsx_chip *chip) } retval = rtsx_send_cmd(chip, SD_CARD, 100); - if (retval < 0) { + if (retval < 0) TRACE_RET(chip, STATUS_FAIL); - } return STATUS_SUCCESS; }