[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20191106180821.GA19385@hwsrv-485799.hostwindsdns.com>
Date: Wed, 6 Nov 2019 18:08:21 +0000
From: Valery Ivanov <ivalery111@...il.com>
To: rspringer@...gle.com, toddpoynor@...gle.com, benchan@...omium.org
Cc: gregkh@...uxfoundation.org, devel@...verdev.osuosl.org,
linux-kernel@...r.kernel.org
Subject: [PATCH] staging: gasket: gasket_ioctl: Remove unnecessary
line-breaks in funtion signature
This patch fix the function signature for trace_gasket_ioctl_page_table_data
to avoid the checkpatch.pl warning:
CHECK: Lines should not end with a '('
Signed-off-by: Valery Ivanov <ivalery111@...il.com>
---
drivers/staging/gasket/gasket_ioctl.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/gasket/gasket_ioctl.c b/drivers/staging/gasket/gasket_ioctl.c
index 240f9bb..55cb6b1 100644
--- a/drivers/staging/gasket/gasket_ioctl.c
+++ b/drivers/staging/gasket/gasket_ioctl.c
@@ -54,9 +54,10 @@ 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;
--
1.8.3.1
Powered by blists - more mailing lists