]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging:android:ion: Fix whitespace issue
authorYannis Damigos <giannis.damigos@gmail.com>
Tue, 27 Sep 2016 07:38:26 +0000 (10:38 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 27 Sep 2016 11:14:48 +0000 (13:14 +0200)
This patch fixes the following whitespace issue:

CHECK: spaces preferred around that '*' (ctx:VxV)
FILE: drivers/staging/android/ion/ion_of.c:91:
+                            sizeof(struct ion_platform_heap)*num_heaps,

Signed-off-by: Yannis Damigos <giannis.damigos@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/android/ion/ion_of.c

index 25f688c26050ee2a1b058f61285ff9172120fe0b..15bac92b7f042023dbe327de670d8cd011a7f323 100644 (file)
@@ -88,7 +88,7 @@ struct ion_platform_data *ion_parse_dt(struct platform_device *pdev,
                return ERR_PTR(-EINVAL);
 
        heaps = devm_kzalloc(&pdev->dev,
-                            sizeof(struct ion_platform_heap)*num_heaps,
+                            sizeof(struct ion_platform_heap) * num_heaps,
                             GFP_KERNEL);
        if (!heaps)
                return ERR_PTR(-ENOMEM);