staging: vt6656: rename MACvWriteMultiAddr to vnt_mac_set_filter

The function sets the mac filter so rename to vnt_mac_set_filter

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Malcolm Priestley 2014-05-31 11:50:36 +01:00 committed by Greg Kroah-Hartman
parent bc240f54e5
commit d10079105f
3 changed files with 4 additions and 4 deletions

View File

@ -50,7 +50,7 @@
* Return Value: none
*
*/
void MACvWriteMultiAddr(struct vnt_private *priv, u64 mc_filter)
void vnt_mac_set_filter(struct vnt_private *priv, u64 mc_filter)
{
__le64 le_mc = cpu_to_le64(mc_filter);

View File

@ -414,7 +414,7 @@ struct vnt_mac_set_key {
u8 key[WLAN_KEY_LEN_CCMP];
} __packed;
void MACvWriteMultiAddr(struct vnt_private *, u64);
void vnt_mac_set_filter(struct vnt_private *, u64);
void MACbShutdown(struct vnt_private *);
void MACvSetBBType(struct vnt_private *, u8);
void MACvDisableKeyEntry(struct vnt_private *, u8);

View File

@ -1284,7 +1284,7 @@ void vnt_configure_filter(struct vnt_private *priv)
} else if ((netdev_mc_count(dev) > priv->multicast_limit) ||
(dev->flags & IFF_ALLMULTI)) {
mc_filter = ~0x0;
MACvWriteMultiAddr(priv, mc_filter);
vnt_mac_set_filter(priv, mc_filter);
priv->byRxMode |= (RCR_MULTICAST|RCR_BROADCAST);
} else {
@ -1294,7 +1294,7 @@ void vnt_configure_filter(struct vnt_private *priv)
mc_filter |= 1ULL << (bit_nr & 0x3f);
}
MACvWriteMultiAddr(priv, mc_filter);
vnt_mac_set_filter(priv, mc_filter);
priv->byRxMode &= ~(RCR_UNICAST);
priv->byRxMode |= (RCR_MULTICAST|RCR_BROADCAST);