staging: vt6656: rename abyPermanentNetAddr to permanent_net_addr
Removing prefix and camel case Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ebf9b31238
commit
41e8321a6d
@ -307,7 +307,7 @@ struct vnt_private {
|
||||
struct vnt_cmd_card_init init_command;
|
||||
struct vnt_rsp_card_init init_response;
|
||||
u8 current_net_addr[ETH_ALEN];
|
||||
u8 abyPermanentNetAddr[ETH_ALEN];
|
||||
u8 permanent_net_addr[ETH_ALEN];
|
||||
|
||||
int bExistSWNetAddr;
|
||||
|
||||
|
@ -334,9 +334,8 @@ static int device_init_registers(struct vnt_private *priv)
|
||||
}
|
||||
|
||||
/* get permanent network address */
|
||||
memcpy(priv->abyPermanentNetAddr, init_rsp->net_addr, 6);
|
||||
memcpy(priv->current_net_addr,
|
||||
priv->abyPermanentNetAddr, ETH_ALEN);
|
||||
memcpy(priv->permanent_net_addr, init_rsp->net_addr, 6);
|
||||
memcpy(priv->current_net_addr, priv->permanent_net_addr, ETH_ALEN);
|
||||
|
||||
/* if exist SW network address, use it */
|
||||
dev_dbg(&priv->usb->dev, "Network address = %pM\n",
|
||||
@ -970,7 +969,7 @@ int vnt_init(struct vnt_private *priv)
|
||||
if (!(device_init_registers(priv)))
|
||||
return -EAGAIN;
|
||||
|
||||
SET_IEEE80211_PERM_ADDR(priv->hw, priv->abyPermanentNetAddr);
|
||||
SET_IEEE80211_PERM_ADDR(priv->hw, priv->permanent_net_addr);
|
||||
|
||||
vnt_init_bands(priv);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user