mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
staging: unisys: Modify boolean assignment
Boolean variables should be assigned true/false rather than 1/0. This patch makes a correction on such a variable which has boolean values assigned in all other places within the file. Signed-off-by: Janani Ravichandran <janani.rvchndrn@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
90cb147f3a
commit
5fe36bf068
1 changed files with 1 additions and 1 deletions
|
@ -1062,7 +1062,7 @@ static int visorhba_resume(struct visor_device *dev,
|
|||
return -EINVAL;
|
||||
|
||||
if (devdata->serverdown && !devdata->serverchangingstate)
|
||||
devdata->serverchangingstate = 1;
|
||||
devdata->serverchangingstate = true;
|
||||
|
||||
visor_thread_start(&devdata->threadinfo, process_incoming_rsps,
|
||||
devdata, "vhba_incming");
|
||||
|
|
Loading…
Reference in a new issue