All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging: gasket: gasket_ioctl: Remove unnecessary line-breaks in funtion signature
@ 2019-11-06 18:08 ` Valery Ivanov
  0 siblings, 0 replies; 8+ messages in thread
From: Valery Ivanov @ 2019-11-06 18:08 UTC (permalink / raw)
  To: rspringer, toddpoynor, benchan; +Cc: gregkh, devel, linux-kernel

	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@gmail.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


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2019-11-07 15:09 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-06 18:08 [PATCH] staging: gasket: gasket_ioctl: Remove unnecessary line-breaks in funtion signature Valery Ivanov
2019-11-06 18:08 ` Valery Ivanov
2019-11-06 19:12 ` Joe Perches
2019-11-06 19:12   ` Joe Perches
2019-11-07 15:09   ` Greg KH
2019-11-07 15:09     ` Greg KH
2019-11-07 15:08 ` Greg KH
2019-11-07 15:08   ` Greg KH

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.