]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Staging: rts5208: Add space around '+'
authorDilek Uzulmez <dilekuzulmez@gmail.com>
Sun, 13 Mar 2016 21:31:08 +0000 (23:31 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 28 Mar 2016 14:30:36 +0000 (07:30 -0700)
Add space around operator '+'. Problem found using checkpatch.pl
CHECK: spaces preferred around that '+' (ctx:VxV)

Signed-off-by: Dilek Uzulmez <dilekuzulmez@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rts5208/ms.c

index a780185a3754c1de13539405dea515b2341ddc43..3e75db751c4146ab46ac6ed4f19ca3f7df9bf979 100644 (file)
@@ -2691,7 +2691,7 @@ static int ms_build_l2p_tbl(struct rtsx_chip *chip, int seg_no)
                }
 
                if ((log_blk < ms_start_idx[seg_no]) ||
-                               (log_blk >= ms_start_idx[seg_no+1])) {
+                               (log_blk >= ms_start_idx[seg_no + 1])) {
                        if (!(chip->card_wp & MS_CARD)) {
                                retval = ms_erase_block(chip, phy_blk);
                                if (retval != STATUS_SUCCESS)
@@ -3836,7 +3836,7 @@ static int ms_rw_multi_sector(struct scsi_cmnd *srb, struct rtsx_chip *chip,
        start_page = (u8)(start_sector & ms_card->page_off);
 
        for (seg_no = 0; seg_no < ARRAY_SIZE(ms_start_idx) - 1; seg_no++) {
-               if (log_blk < ms_start_idx[seg_no+1])
+               if (log_blk < ms_start_idx[seg_no + 1])
                        break;
        }
 
@@ -4264,7 +4264,7 @@ int mg_set_leaf_id(struct scsi_cmnd *srb, struct rtsx_chip *chip)
        memset(buf1, 0, 32);
        rtsx_stor_get_xfer_buf(buf2, min_t(int, 12, scsi_bufflen(srb)), srb);
        for (i = 0; i < 8; i++)
-               buf1[8+i] = buf2[4+i];
+               buf1[8 + i] = buf2[4 + i];
 
        retval = ms_write_bytes(chip, PRO_WRITE_SHORT_DATA, 32, WAIT_INT,
                                buf1, 32);
@@ -4399,10 +4399,10 @@ int mg_chg(struct scsi_cmnd *srb, struct rtsx_chip *chip)
        rtsx_stor_get_xfer_buf(buf, bufflen, srb);
 
        for (i = 0; i < 8; i++)
-               buf[i] = buf[4+i];
+               buf[i] = buf[4 + i];
 
        for (i = 0; i < 24; i++)
-               buf[8+i] = 0;
+               buf[8 + i] = 0;
 
        retval = ms_write_bytes(chip, PRO_WRITE_SHORT_DATA,
                                32, WAIT_INT, buf, 32);
@@ -4511,10 +4511,10 @@ int mg_rsp(struct scsi_cmnd *srb, struct rtsx_chip *chip)
        rtsx_stor_get_xfer_buf(buf, bufflen, srb);
 
        for (i = 0; i < 8; i++)
-               buf[i] = buf[4+i];
+               buf[i] = buf[4 + i];
 
        for (i = 0; i < 24; i++)
-               buf[8+i] = 0;
+               buf[8 + i] = 0;
 
        retval = ms_write_bytes(chip, PRO_WRITE_SHORT_DATA, 32, WAIT_INT,
                                buf, 32);