staging: unisys: fix spacing in parahotplug_request_create

Just fix the spacing around the logical or operator in this function.

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 2015-03-16 13:58:30 -04:00 committed by Greg Kroah-Hartman
parent 55b33413b8
commit 6a55e3c337

View file

@ -1470,7 +1470,7 @@ parahotplug_request_create(struct controlvm_message *msg)
{
struct parahotplug_request *req;
req = kmalloc(sizeof(*req), GFP_KERNEL|__GFP_NORETRY);
req = kmalloc(sizeof(*req), GFP_KERNEL | __GFP_NORETRY);
if (!req)
return NULL;