mirror of
https://github.com/torvalds/linux.git
synced 2024-12-16 16:12:52 +00:00
staging:android:ion: Fix whitespace issue
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>
This commit is contained in:
parent
c595149c3e
commit
3dbab14b85
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user