diff options
author | Ashish Kalra <eashishkalra@gmail.com> | 2017-12-02 22:59:27 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-12-06 10:05:06 +0100 |
commit | 43aa37d522cac7a5c7ebe13be0f35d573f8b7eb9 (patch) | |
tree | 4c216d68bdaa448b80de0e6f01faee9cf8e3d89f /drivers | |
parent | ba2d563f82d9c8c56655dc370aa75013f78d13e0 (diff) |
staging: android: add identifiers to function parameters
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/android/ion/ion.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/android/ion/ion.h b/drivers/staging/android/ion/ion.h index 7409437ffdd8..c24c6e230654 100644 --- 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); }; /** |