Staging: rts5139: Splitted one-line multiple assignment
authorFabio Falzoi <fabio.falzoi84@gmail.com>
Tue, 22 Apr 2014 21:23:01 +0000 (23:23 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 15 May 2014 22:20:51 +0000 (15:20 -0700)
Splitted a multiple assignment on two separate lines.

Signed-off-by: Fabio Falzoi <fabio.falzoi84@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rts5139/rts51x.c

index 28f4631ec577eb760ed2ad955c371119ae37b6dc..2be6210ece59f7ff61693ec017db44e8f79a349b 100644 (file)
@@ -607,7 +607,8 @@ static int rts51x_acquire_resources(struct rts51x_chip *chip)
                return -ENOMEM;
        }
 
-       chip->cmd_buf = chip->rsp_buf = rts51x->iobuf;
+       chip->cmd_buf = rts51x->iobuf;
+       chip->rsp_buf = rts51x->iobuf;
 
        rts51x_init_options(chip);