summaryrefslogtreecommitdiffstats
path: root/drivers/staging/unisys
diff options
context:
space:
mode:
authorBenjamin Romer <benjamin.romer@unisys.com>2014-12-05 17:09:11 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-01-09 17:32:34 -0800
commit61f988961f02cf2b11bf475b2ae0ce4d81e4b3fc (patch)
tree68dadc594871557122a52a2c27772eed730e85ed /drivers/staging/unisys
parent6791b8c4d2d10ee4747d6ae08f3faa1fd9bc988d (diff)
staging: unisys: fix brackets in uisctrl_register_req_handler_ex()
Add the missing brackets to the last if statement in this function. Signed-off-by: Bryan Thompson <bryan.thompson@unisys.com> 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/uislib/uisutils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/unisys/uislib/uisutils.c b/drivers/staging/unisys/uislib/uisutils.c
index 5865df7d4ba9..6d13eb23d497 100644
--- a/drivers/staging/unisys/uislib/uisutils.c
+++ b/drivers/staging/unisys/uislib/uisutils.c
@@ -148,9 +148,9 @@ Away:
if (chipset_driver_info)
bus_device_info_init(chipset_driver_info, "chipset",
"uislib", VERSION, NULL);
- } else
+ } else {
LOGERR("failed to register type %pUL.\n", &switch_uuid);
-
+ }
return rc;
}
EXPORT_SYMBOL_GPL(uisctrl_register_req_handler_ex);