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>
This commit is contained in:
Benjamin Romer 2014-12-05 17:09:11 -05:00 committed by Greg Kroah-Hartman
parent 6791b8c4d2
commit 61f988961f
1 changed files with 2 additions and 2 deletions

View File

@ -148,9 +148,9 @@ uisctrl_register_req_handler_ex(uuid_le switch_uuid,
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);