staging: unisys: fix spacing in parahotplug_request_create
authorBenjamin Romer <benjamin.romer@unisys.com>
Mon, 16 Mar 2015 17:58:30 +0000 (13:58 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 23 Mar 2015 20:53:54 +0000 (21:53 +0100)
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>
drivers/staging/unisys/visorchipset/visorchipset_main.c

index e25bf80fe6538b039d795786400def4cf5457332..105683198af6e5c154d1762777cc23272988cae0 100644 (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;