staging: gasket: Fix lines ending with a '('
authorCristianeNaves <cristianenavescardoso09@gmail.com>
Thu, 24 Oct 2019 13:46:23 +0000 (11:46 -0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 25 Oct 2019 03:13:19 +0000 (23:13 -0400)
Fix lines ending with a '('. Issue found by checkpatch.

Signed-off-by: CristianeNaves <cristianenavescardoso09@gmail.com>
Link: https://lore.kernel.org/r/20191024134623.GA4506@cristiane-Inspiron-5420
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/gasket/gasket_ioctl.c

index 240f9bb10b71b8faff2a043f1c33ed5a2b945d44..4d086d92cddb18a218229af2d545e8f9aa0c22bd 100644 (file)
@@ -54,9 +54,9 @@ static int gasket_read_page_table_size(struct gasket_dev *gasket_dev,
        ibuf.size = gasket_page_table_num_entries(
                gasket_dev->page_table[ibuf.page_table_index]);
 
-       trace_gasket_ioctl_page_table_data(
-               ibuf.page_table_index, ibuf.size, ibuf.host_address,
-               ibuf.device_address);
+       trace_gasket_ioctl_page_table_data(ibuf.page_table_index, ibuf.size,
+                                          ibuf.host_address,
+                                          ibuf.device_address);
 
        if (copy_to_user(argp, &ibuf, sizeof(ibuf)))
                return -EFAULT;
@@ -101,9 +101,9 @@ static int gasket_partition_page_table(struct gasket_dev *gasket_dev,
        if (copy_from_user(&ibuf, argp, sizeof(struct gasket_page_table_ioctl)))
                return -EFAULT;
 
-       trace_gasket_ioctl_page_table_data(
-               ibuf.page_table_index, ibuf.size, ibuf.host_address,
-               ibuf.device_address);
+       trace_gasket_ioctl_page_table_data(ibuf.page_table_index, ibuf.size,
+                                          ibuf.host_address,
+                                          ibuf.device_address);
 
        if (ibuf.page_table_index >= gasket_dev->num_page_tables)
                return -EFAULT;