summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Romer <benjamin.romer@unisys.com>2015-03-16 13:58:30 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-03-23 21:53:54 +0100
commit6a55e3c33762d1623ed9fb6d0caa52076fbac762 (patch)
treead2de53fc980bc5041bbfd19a51b001e0afc23b0
parent55b33413b882570b4790e1fada44060d6f7e5cfa (diff)
downloadlinux-6a55e3c33762d1623ed9fb6d0caa52076fbac762.tar.bz2
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>
-rw-r--r--drivers/staging/unisys/visorchipset/visorchipset_main.c2
1 files changed, 1 insertions, 1 deletions
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;