staging: rtl8192e: Rename r8192_set_multicast
Use naming schema found in other rtlwifi devices. Rename r8192_set_multicast to _rtl92e_set_multicast. Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3ef7f1ee57
commit
2002978d54
1 changed files with 2 additions and 2 deletions
|
@ -2263,7 +2263,7 @@ static void _rtl92e_restart(void *data)
|
|||
up(&priv->wx_sem);
|
||||
}
|
||||
|
||||
static void r8192_set_multicast(struct net_device *dev)
|
||||
static void _rtl92e_set_multicast(struct net_device *dev)
|
||||
{
|
||||
struct r8192_priv *priv = rtllib_priv(dev);
|
||||
short promisc;
|
||||
|
@ -2556,7 +2556,7 @@ static const struct net_device_ops rtl8192_netdev_ops = {
|
|||
.ndo_stop = _rtl92e_close,
|
||||
.ndo_tx_timeout = _rtl92e_tx_timeout,
|
||||
.ndo_do_ioctl = _rtl92e_ioctl,
|
||||
.ndo_set_rx_mode = r8192_set_multicast,
|
||||
.ndo_set_rx_mode = _rtl92e_set_multicast,
|
||||
.ndo_set_mac_address = _rtl92e_set_mac_adr,
|
||||
.ndo_validate_addr = eth_validate_addr,
|
||||
.ndo_change_mtu = eth_change_mtu,
|
||||
|
|
Loading…
Add table
Reference in a new issue