mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 03:10:30 -04:00
staging: rtl8192e: Rename rtl8192_check_nic_enough_desc
Use naming schema found in other rtlwifi devices. Rename rtl8192_check_nic_enough_desc to _rtl92e_check_nic_enough_desc. Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
4dba03a287
commit
288adaf5a6
@@ -272,7 +272,7 @@ bool rtl92e_set_rf_state(struct net_device *dev,
|
||||
return bActionAllowed;
|
||||
}
|
||||
|
||||
static short rtl8192_check_nic_enough_desc(struct net_device *dev, int prio)
|
||||
static short _rtl92e_check_nic_enough_desc(struct net_device *dev, int prio)
|
||||
{
|
||||
struct r8192_priv *priv = rtllib_priv(dev);
|
||||
struct rtl8192_tx_ring *ring = &priv->tx_ring[prio];
|
||||
@@ -856,7 +856,7 @@ static void _rtl92e_init_priv_handler(struct net_device *dev)
|
||||
priv->rtllib->set_chan = _rtl92e_set_chan;
|
||||
priv->rtllib->link_change = priv->ops->link_change;
|
||||
priv->rtllib->softmac_data_hard_start_xmit = _rtl92e_hard_data_xmit;
|
||||
priv->rtllib->check_nic_enough_desc = rtl8192_check_nic_enough_desc;
|
||||
priv->rtllib->check_nic_enough_desc = _rtl92e_check_nic_enough_desc;
|
||||
priv->rtllib->handle_assoc_response = _rtl92e_handle_assoc_response;
|
||||
priv->rtllib->handle_beacon = _rtl92e_handle_beacon;
|
||||
priv->rtllib->SetWirelessMode = rtl92e_set_wireless_mode;
|
||||
|
||||
Reference in New Issue
Block a user