Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging:vt6656:baseband.h: fix function definition argument without identifier name issue

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

Signed-off-by: Arushi Singhal <arushisinghal19971997@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Arushi Singhal and committed by
Greg Kroah-Hartman
29fcf85b 360daa82

+8 -8
+8 -8
drivers/staging/vt6655/baseband.h
··· 75 75 void BBvSetVGAGainOffset(struct vnt_private *, unsigned char byData); 76 76 77 77 /* VT3253 Baseband */ 78 - bool BBbVT3253Init(struct vnt_private *); 79 - void BBvSoftwareReset(struct vnt_private *); 80 - void BBvPowerSaveModeON(struct vnt_private *); 81 - void BBvPowerSaveModeOFF(struct vnt_private *); 82 - void BBvSetTxAntennaMode(struct vnt_private *, unsigned char byAntennaMode); 83 - void BBvSetRxAntennaMode(struct vnt_private *, unsigned char byAntennaMode); 84 - void BBvSetDeepSleep(struct vnt_private *, unsigned char byLocalID); 85 - void BBvExitDeepSleep(struct vnt_private *, unsigned char byLocalID); 78 + bool BBbVT3253Init(struct vnt_private *priv); 79 + void BBvSoftwareReset(struct vnt_private *priv); 80 + void BBvPowerSaveModeON(struct vnt_private *priv); 81 + void BBvPowerSaveModeOFF(struct vnt_private *priv); 82 + void BBvSetTxAntennaMode(struct vnt_private *priv, unsigned char byAntennaMode); 83 + void BBvSetRxAntennaMode(struct vnt_private *priv, unsigned char byAntennaMode); 84 + void BBvSetDeepSleep(struct vnt_private *priv, unsigned char byLocalID); 85 + void BBvExitDeepSleep(struct vnt_private *priv, unsigned char byLocalID); 86 86 87 87 #endif /* __BASEBAND_H__ */