mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
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 <vatsalanarang@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
03f4a7b688
commit
ab2a7a292a
@ -755,11 +755,7 @@ bool RFvWriteWakeProgSyn(struct vnt_private *priv, unsigned char byRFType,
|
|||||||
* Return Value: true if succeeded; false if failed.
|
* Return Value: true if succeeded; false if failed.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
bool RFbSetPower(
|
bool RFbSetPower(struct vnt_private *priv, unsigned int rate, u16 uCH)
|
||||||
struct vnt_private *priv,
|
|
||||||
unsigned int rate,
|
|
||||||
u16 uCH
|
|
||||||
)
|
|
||||||
{
|
{
|
||||||
bool ret = true;
|
bool ret = true;
|
||||||
unsigned char byPwr = 0;
|
unsigned char byPwr = 0;
|
||||||
@ -891,11 +887,7 @@ bool RFbRawSetPower(struct vnt_private *priv, unsigned char byPwr,
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
RFvRSSITodBm(
|
RFvRSSITodBm(struct vnt_private *priv, unsigned char byCurrRSSI, long *pldBm)
|
||||||
struct vnt_private *priv,
|
|
||||||
unsigned char byCurrRSSI,
|
|
||||||
long *pldBm
|
|
||||||
)
|
|
||||||
{
|
{
|
||||||
unsigned char byIdx = (((byCurrRSSI & 0xC0) >> 6) & 0x03);
|
unsigned char byIdx = (((byCurrRSSI & 0xC0) >> 6) & 0x03);
|
||||||
long b = (byCurrRSSI & 0x3F);
|
long b = (byCurrRSSI & 0x3F);
|
||||||
|
Loading…
Reference in New Issue
Block a user