From: Vatsala Narang Date: Mon, 25 Mar 2019 11:27:24 +0000 (+0530) Subject: staging: vt6655: lines should not end with a parentheses X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ab2a7a292a783b0c9ff0849c27c32c9ce7ed8237;p=linux.git staging: vt6655: lines should not end with a parentheses Adjust code to fix the style issue-lines should not end with a parentheses Signed-off-by: Vatsala Narang Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/vt6655/rf.c b/drivers/staging/vt6655/rf.c index afd69a3ba8204..e80fed69bafe9 100644 --- a/drivers/staging/vt6655/rf.c +++ b/drivers/staging/vt6655/rf.c @@ -755,11 +755,7 @@ bool RFvWriteWakeProgSyn(struct vnt_private *priv, unsigned char byRFType, * Return Value: true if succeeded; false if failed. * */ -bool RFbSetPower( - struct vnt_private *priv, - unsigned int rate, - u16 uCH -) +bool RFbSetPower(struct vnt_private *priv, unsigned int rate, u16 uCH) { bool ret = true; unsigned char byPwr = 0; @@ -891,11 +887,7 @@ bool RFbRawSetPower(struct vnt_private *priv, unsigned char byPwr, * */ void -RFvRSSITodBm( - struct vnt_private *priv, - unsigned char byCurrRSSI, - long *pldBm - ) +RFvRSSITodBm(struct vnt_private *priv, unsigned char byCurrRSSI, long *pldBm) { unsigned char byIdx = (((byCurrRSSI & 0xC0) >> 6) & 0x03); long b = (byCurrRSSI & 0x3F);