Commit 7cb61930 authored by Fabio Falzoi's avatar Fabio Falzoi Committed by Greg Kroah-Hartman

Staging: rts5139: Splitted one-line multiple assignment

Splitted a multiple assignment on two separate lines.
Signed-off-by: default avatarFabio Falzoi <fabio.falzoi84@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 307a433e
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment