Patch fixes following coding style warnings.
        drivers/mmc/card/block.c:1734: WARNING: braces {} are not necessary for 
single statement blocks
        drivers/mmc/card/block.c:2019: WARNING: braces {} are not necessary for 
single statement blocks
              

Signed-off-by: Sheetal Tigadoli <[email protected]>
---
 drivers/mmc/card/block.c |    6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c
index 741a1e1..2394d0b 100644
--- a/drivers/mmc/card/block.c
+++ b/drivers/mmc/card/block.c
@@ -1733,9 +1733,8 @@ static int mmc_blk_cmd_err(struct mmc_blk_data *md, 
struct mmc_card *card,
                u32 blocks;
 
                blocks = mmc_sd_num_wr_blocks(card);
-               if (blocks != (u32)-1) {
+               if (blocks != (u32)-1)
                        ret = blk_end_request(req, 0, blocks << 9);
-               }
        } else {
                if (!mmc_packed_cmd(mq_rq->cmd_type))
                        ret = blk_end_request(req, 0, brq->data.bytes_xfered);
@@ -2018,9 +2017,8 @@ static int mmc_blk_issue_rq(struct mmc_queue *mq, struct 
request *req)
 
        ret = mmc_blk_part_switch(card, md);
        if (ret) {
-               if (req) {
+               if (req)
                        blk_end_request_all(req, -EIO);
-               }
                ret = 0;
                goto out;
        }
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to