From: Ashish Kalra Date: Sat, 2 Dec 2017 17:29:27 +0000 (+0530) Subject: staging: android: add identifiers to function parameters X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=43aa37d522cac7a5c7ebe13be0f35d573f8b7eb9;p=openwrt%2Fstaging%2Fblogic.git 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 Signed-off-by: Greg Kroah-Hartman --- 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); }; /**