summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rts5208
diff options
context:
space:
mode:
authorWayne Porter <wporter82@gmail.com>2016-10-03 23:18:55 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-10-16 10:25:05 +0200
commit6d2117f1a51005a2fa2be65a6e0b9ba82ba564a5 (patch)
treec1e50c1afa1e55b7050229b081bd30ff791b660a /drivers/staging/rts5208
parent40eeb86243de35fd2a613cffdc0397b7d266367a (diff)
staging: rts5208: xd.c: Remove multiple assignments
Checkpatch found multiple assignments on one line so move them to their own lines. Signed-off-by: Wayne Porter <wporter82@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rts5208')
-rw-r--r--drivers/staging/rts5208/xd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/rts5208/xd.c b/drivers/staging/rts5208/xd.c
index 66f96dc56765..85aba05acbc1 100644
--- a/drivers/staging/rts5208/xd.c
+++ b/drivers/staging/rts5208/xd.c
@@ -1489,7 +1489,8 @@ static int xd_build_l2p_tbl(struct rtsx_chip *chip, int zone_no)
dev_dbg(rtsx_dev(chip), "start block 0x%x, end block 0x%x\n",
start, end);
- zone->set_index = zone->get_index = 0;
+ zone->set_index = 0;
+ zone->get_index = 0;
zone->unused_blk_cnt = 0;
for (i = start; i < end; i++) {