projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e06ed0d
)
staging/rts_pstor: remove braces {} in sd.c (sd_select_card)
author
Toshiaki Yamane
<yamanetoshi@gmail.com>
Fri, 7 Sep 2012 04:25:48 +0000
(13:25 +0900)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Mon, 10 Sep 2012 22:36:03 +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 89d0487b84873828edef0c273ace7129ea8e9b36..4b1763caf4bef851b4448cac0a207a5f7dd8e073 100644
(file)
--- a/
drivers/staging/rts_pstor/sd.c
+++ b/
drivers/staging/rts_pstor/sd.c
@@
-717,9
+717,8
@@
int sd_select_card(struct rtsx_chip *chip, int select)
}
retval = sd_send_cmd_get_rsp(chip, cmd_idx, addr, cmd_type, NULL, 0);
- if (retval != STATUS_SUCCESS)
{
+ if (retval != STATUS_SUCCESS)
TRACE_RET(chip, STATUS_FAIL);
- }
return STATUS_SUCCESS;
}