staging: android: ion: Align with open parenthesis
authorRichard Porter <dick@acm.org>
Wed, 3 May 2017 12:47:14 +0000 (13:47 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 15 May 2017 05:41:57 +0000 (07:41 +0200)
Fix checkpatch.pl warning:

CHECK: Alignment should match open parenthesis
+ fd = ion_alloc(data.allocation.len,
+ data.allocation.heap_id_mask,

Signed-off-by: Richard Porter <dick@acm.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/android/ion/ion-ioctl.c

index 76427e4..d9f8b14 100644 (file)
@@ -83,8 +83,8 @@ long ion_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
                int fd;
 
                fd = ion_alloc(data.allocation.len,
-                                               data.allocation.heap_id_mask,
-                                               data.allocation.flags);
+                              data.allocation.heap_id_mask,
+                              data.allocation.flags);
                if (fd < 0)
                        return fd;