aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/unisys
diff options
context:
space:
mode:
authorBenjamin Romer <benjamin.romer@unisys.com>2014-11-04 11:25:22 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-11-05 11:50:49 -0800
commitf0b5c6d3531725edbbdde3e2c2221f1a27f00bd7 (patch)
treea9f5a071e0e417d49a891e8fc8df47ceb21877b3 /drivers/staging/unisys
parentstaging: unisys: fix spacing in periodic_work.c (diff)
downloadlinux-dev-f0b5c6d3531725edbbdde3e2c2221f1a27f00bd7.tar.xz
linux-dev-f0b5c6d3531725edbbdde3e2c2221f1a27f00bd7.zip
staging: unisys: fix bracketing in visor_periodic_work_stop()
The last if statement in this function is missing brackets on the else clause. Add them. Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/unisys')
-rw-r--r--drivers/staging/unisys/visorutil/periodic_work.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/unisys/visorutil/periodic_work.c b/drivers/staging/unisys/visorutil/periodic_work.c
index 73c31f78df9e..0908bf929401 100644
--- a/drivers/staging/unisys/visorutil/periodic_work.c
+++ b/drivers/staging/unisys/visorutil/periodic_work.c
@@ -207,8 +207,9 @@ BOOL visor_periodic_work_stop(struct periodic_work *pw)
*/
SLEEPJIFFIES(10);
write_lock(&pw->lock);
- } else
+ } else {
pw->want_to_stop = FALSE;
+ }
}
write_unlock(&pw->lock);
return stopped_something;