提交 5f1b9e63 编写于 作者: B Benjamin Romer 提交者: Greg Kroah-Hartman

staging: unisys: get rid of doubled assignment in uislib_mod_init()

Split the doubled assignment in uislib_mod_init() into two separate assignments.
Signed-off-by: NBryan Thompson <bryan.thompson@unisys.com>
Signed-off-by: NBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 2f652e0c
......@@ -1495,7 +1495,8 @@ uislib_mod_init(void)
/* initialize global pointers to NULL */
BusListHead = NULL;
BusListCount = MaxBusCount = 0;
BusListCount = 0;
MaxBusCount = 0;
rwlock_init(&BusListLock);
virt_control_chan_func = NULL;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册