Commit 71462507 authored by Benjamin Romer's avatar Benjamin Romer Committed by Greg Kroah-Hartman

staging: unisys: split double assignment in visor_charqueue_create()

Split up the doubled assignment in visor_charqueue_create() into two separate
assignments.
Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7a81a6e8
...@@ -45,7 +45,8 @@ struct charqueue *visor_charqueue_create(ulong nslots) ...@@ -45,7 +45,8 @@ struct charqueue *visor_charqueue_create(ulong nslots)
} }
cq->alloc_size = alloc_size; cq->alloc_size = alloc_size;
cq->nslots = nslots; cq->nslots = nslots;
cq->head = cq->tail = 0; cq->head = 0;
cq->tail = 0;
spin_lock_init(&cq->lock); spin_lock_init(&cq->lock);
return cq; return cq;
} }
......
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