staging: android: Fix checkpatch.pl error
authorAshish Kalra <eashishkalra@gmail.com>
Sat, 2 Dec 2017 17:21:05 +0000 (22:51 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 6 Dec 2017 09:05:06 +0000 (10:05 +0100)
fixed CHECK: Lines should not end with a '('
reported by checkpatch.pl

Signed-off-by: Ashish Kalra <eashishkalra@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/android/ion/ion.c

index fa4b75f49859cbf234ef650c0c4401a03708d85e..cada3725e2e45fd40ed07e1a359a009aac933295 100644 (file)
@@ -557,9 +557,9 @@ void ion_device_add_heap(struct ion_heap *heap)
                char debug_name[64];
 
                snprintf(debug_name, 64, "%s_shrink", heap->name);
-               debug_file = debugfs_create_file(
-                       debug_name, 0644, dev->debug_root, heap,
-                       &debug_shrink_fops);
+               debug_file = debugfs_create_file(debug_name,
+                                                0644, dev->debug_root, heap,
+                                                &debug_shrink_fops);
                if (!debug_file) {
                        char buf[256], *path;