projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ba2d563
)
staging: android: add identifiers to function parameters
author
Ashish Kalra
<eashishkalra@gmail.com>
Sat, 2 Dec 2017 17:29:27 +0000
(22:59 +0530)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Wed, 6 Dec 2017 09:05:06 +0000
(10:05 +0100)
Fix checkpatch.pl warnings of the form "function definition argument
'foo' should also have an identifier name".
Signed-off-by: Ashish Kalra <eashishkalra@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/android/ion/ion.h
patch
|
blob
|
history
diff --git
a/drivers/staging/android/ion/ion.h
b/drivers/staging/android/ion/ion.h
index 7409437ffdd88d673e7811da3be39ef5bc99900e..c24c6e2306545d16becc01afa705e76ae33dbdf8 100644
(file)
--- a/
drivers/staging/android/ion/ion.h
+++ b/
drivers/staging/android/ion/ion.h
@@
-180,7
+180,8
@@
struct ion_heap {
wait_queue_head_t waitqueue;
struct task_struct *task;
- int (*debug_show)(struct ion_heap *heap, struct seq_file *, void *);
+ int (*debug_show)(struct ion_heap *heap, struct seq_file *s,
+ void *unused);
};
/**