From: Benjamin Romer Date: Mon, 16 Mar 2015 17:58:30 +0000 (-0400) Subject: staging: unisys: fix spacing in parahotplug_request_create X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=6a55e3c33762d1623ed9fb6d0caa52076fbac762;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git 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 Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/unisys/visorchipset/visorchipset_main.c b/drivers/staging/unisys/visorchipset/visorchipset_main.c index e25bf80fe653..105683198af6 100644 --- a/drivers/staging/unisys/visorchipset/visorchipset_main.c +++ b/drivers/staging/unisys/visorchipset/visorchipset_main.c @@ -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;