From: Benjamin Romer Date: Fri, 5 Dec 2014 22:09:11 +0000 (-0500) Subject: staging: unisys: fix brackets in uisctrl_register_req_handler_ex() X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=61f988961f02cf2b11bf475b2ae0ce4d81e4b3fc;p=deliverable%2Flinux.git 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 Signed-off-by: Benjamin Romer Signed-off-by: Greg Kroah-Hartman --- 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);