mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-14 07:42:38 -04:00
staging: vt6656: camel case clean up MACvWriteBSSIDAddress
camel case changes pDevice -> priv pbyEtherAddr -> addr Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
08a150c506
commit
1195200fff
@@ -214,15 +214,10 @@ void MACvWriteWord(struct vnt_private *priv, u8 reg_ofs, u16 word)
|
||||
reg_ofs, MESSAGE_REQUEST_MACREG, ARRAY_SIZE(data), data);
|
||||
}
|
||||
|
||||
void MACvWriteBSSIDAddress(struct vnt_private *pDevice, u8 *pbyEtherAddr)
|
||||
void MACvWriteBSSIDAddress(struct vnt_private *priv, u8 *addr)
|
||||
{
|
||||
CONTROLnsRequestOut(pDevice,
|
||||
MESSAGE_TYPE_WRITE,
|
||||
MAC_REG_BSSID0,
|
||||
MESSAGE_REQUEST_MACREG,
|
||||
ETH_ALEN,
|
||||
pbyEtherAddr
|
||||
);
|
||||
CONTROLnsRequestOut(priv, MESSAGE_TYPE_WRITE, MAC_REG_BSSID0,
|
||||
MESSAGE_REQUEST_MACREG, ETH_ALEN, addr);
|
||||
}
|
||||
|
||||
void MACvEnableProtectMD(struct vnt_private *pDevice)
|
||||
|
||||
Reference in New Issue
Block a user