staging: rtl8192e: Rename rtl8192_check_nic_enough_desc
authorMateusz Kulikowski <mateusz.kulikowski@gmail.com>
Sun, 20 Sep 2015 08:14:13 +0000 (10:14 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 29 Sep 2015 01:33:53 +0000 (03:33 +0200)
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>
drivers/staging/rtl8192e/rtl8192e/rtl_core.c

index 0fcaf1b..887ba04 100644 (file)
@@ -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;