Commit a7ecb9d3 authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman

staging: vt6656: camel case clean up MACvEnableProtectMD

Camel case changes
pDevice -> priv
pbyData -> data
Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1195200f
...@@ -220,20 +220,15 @@ void MACvWriteBSSIDAddress(struct vnt_private *priv, u8 *addr) ...@@ -220,20 +220,15 @@ void MACvWriteBSSIDAddress(struct vnt_private *priv, u8 *addr)
MESSAGE_REQUEST_MACREG, ETH_ALEN, addr); MESSAGE_REQUEST_MACREG, ETH_ALEN, addr);
} }
void MACvEnableProtectMD(struct vnt_private *pDevice) void MACvEnableProtectMD(struct vnt_private *priv)
{ {
u8 pbyData[2]; u8 data[2];
pbyData[0] = EnCFG_ProtectMd; data[0] = EnCFG_ProtectMd;
pbyData[1] = EnCFG_ProtectMd; data[1] = EnCFG_ProtectMd;
CONTROLnsRequestOut(pDevice, CONTROLnsRequestOut(priv, MESSAGE_TYPE_WRITE_MASK,
MESSAGE_TYPE_WRITE_MASK, MAC_REG_ENCFG0, MESSAGE_REQUEST_MACREG, ARRAY_SIZE(data), data);
MAC_REG_ENCFG0,
MESSAGE_REQUEST_MACREG,
ARRAY_SIZE(pbyData),
pbyData
);
} }
void MACvDisableProtectMD(struct vnt_private *pDevice) void MACvDisableProtectMD(struct vnt_private *pDevice)
......
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