Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a628747f authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman
Browse files

staging: vt6656: rf.c: RFbSetPower Remove camel case and clean up.



White space clean up.

Camel case changes;
pDevice -> priv
uRATE -> rate
uCH -> channel
bResult -> ret
byPwr -> power

No functional changes.

Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d6bbce06
Loading
Loading
Loading
Loading
+29 −30
Original line number Diff line number Diff line
@@ -732,23 +732,23 @@ int IFRFbWriteEmbedded(struct vnt_private *pDevice, u32 dwData)
 * Return Value: true if succeeded; false if failed.
 *
 */
int RFbSetPower(struct vnt_private *pDevice, u32 uRATE, u32 uCH)
int RFbSetPower(struct vnt_private *priv, u32 rate, u32 channel)
{
	int bResult = true;
	u8 byPwr = pDevice->byCCKPwr;
	int ret = true;
	u8 power = priv->byCCKPwr;

	if (pDevice->dwDiagRefCount)
	if (priv->dwDiagRefCount)
		return true;

	if (uCH == 0)
	if (channel == 0)
		return -EINVAL;

    switch (uRATE) {
	switch (rate) {
	case RATE_1M:
	case RATE_2M:
	case RATE_5M:
	case RATE_11M:
        byPwr = pDevice->abyCCKPwrTbl[uCH-1];
		power = priv->abyCCKPwrTbl[channel-1];
		break;
	case RATE_6M:
	case RATE_9M:
@@ -757,17 +757,16 @@ int RFbSetPower(struct vnt_private *pDevice, u32 uRATE, u32 uCH)
	case RATE_36M:
	case RATE_48M:
	case RATE_54M:
        if (uCH > CB_MAX_CHANNEL_24G) {
            byPwr = pDevice->abyOFDMAPwrTbl[uCH-15];
        } else {
            byPwr = pDevice->abyOFDMPwrTbl[uCH-1];
        }
		if (channel > CB_MAX_CHANNEL_24G)
			power = priv->abyOFDMAPwrTbl[channel-15];
		else
			power = priv->abyOFDMPwrTbl[channel-1];
		break;
	}

    bResult = RFbRawSetPower(pDevice, byPwr, uRATE);
	ret = RFbRawSetPower(priv, power, rate);

    return bResult;
	return ret;
}

/*