Commit ab2a7a29 authored by Vatsala Narang's avatar Vatsala Narang Committed by Greg Kroah-Hartman

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: default avatarVatsala Narang <vatsalanarang@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 03f4a7b6
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment