Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1577659

[PATCH] staging:vt6656:channel.h: fix function definition argument without identifier name issue

From Arushi Singhal <arushisinghal19971997@gmail.com>
Newsgroups linux.kernel
Subject [PATCH] staging:vt6656:channel.h: fix function definition argument without identifier name issue
Date 2017-02-09 15:50 +0100
Message-ID <t8YcO-7mZ-13@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


Function definitions arguments should also have an identifier name as
reported by checkpatch.pl.

Signed-off-by: Arushi Singhal <arushisinghal19971997@gmail.com>
---
 drivers/staging/vt6656/channel.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/vt6656/channel.h b/drivers/staging/vt6656/channel.h
index fcea6995fe26..62f18a959098 100644
--- a/drivers/staging/vt6656/channel.h
+++ b/drivers/staging/vt6656/channel.h
@@ -28,6 +28,6 @@
 
 #include "device.h"
 
-void vnt_init_bands(struct vnt_private *);
+void vnt_init_bands(struct vnt_private *priv);
 
 #endif  /* _CHANNEL_H_ */
-- 
2.11.0

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH] staging:vt6656:channel.h: fix function definition argument  without identifier name issue Arushi Singhal <arushisinghal19971997@gmail.com> - 2017-02-09 15:50 +0100
  Re: [PATCH] staging:vt6656:channel.h: fix function definition  argument without identifier name issue Greg KH <gregkh@linuxfoundation.org> - 2017-02-10 15:10 +0100
    Re: [PATCH] staging:vt6656:channel.h: fix function definition  argument without identifier name issue Greg KH <gregkh@linuxfoundation.org> - 2017-02-11 08:00 +0100

csiph-web