projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9e80f37
)
staging/rts_pstor: remove braces {} in sd.c (sd_pull_ctl_enable)
author
Toshiaki Yamane
<yamanetoshi@gmail.com>
Fri, 7 Sep 2012 04:34:00 +0000
(13:34 +0900)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Mon, 10 Sep 2012 22:36:06 +0000
(15:36 -0700)
fixed below checkpatch warnings.
-WARNING: braces {} are not necessary for single statement blocks
Signed-off-by: Toshiaki Yamane <yamanetoshi@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rts_pstor/sd.c
patch
|
blob
|
history
diff --git
a/drivers/staging/rts_pstor/sd.c
b/drivers/staging/rts_pstor/sd.c
index 667e93d0a6a70b51965f1c7faae1a4e2d3151e3b..fa8cc86d09b4723fb1e07e82fc14a9349ae74d2d 100644
(file)
--- 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;
}