staging: rtl8192e: Rename rtl8192_QueryIsShort
authorMateusz Kulikowski <mateusz.kulikowski@gmail.com>
Sun, 20 Sep 2015 08:13:55 +0000 (10:13 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 29 Sep 2015 01:33:50 +0000 (03:33 +0200)
Use naming schema found in other rtlwifi devices.
Rename rtl8192_QueryIsShort to _rtl92e_query_is_short.

Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c

index 982101d..01e8509 100644 (file)
@@ -1172,7 +1172,7 @@ static u8 _rtl92e_hw_queue_to_fw_queue(struct net_device *dev, u8 QueueID,
        return QueueSelect;
 }
 
-static u8 rtl8192_QueryIsShort(u8 TxHT, u8 TxRate, struct cb_desc *tcb_desc)
+static u8 _rtl92e_query_is_short(u8 TxHT, u8 TxRate, struct cb_desc *tcb_desc)
 {
        u8   tmp_Short;
 
@@ -1197,9 +1197,8 @@ void  rtl92e_fill_tx_desc(struct net_device *dev, struct tx_desc *pdesc,
        pTxFwInfo->TxHT = (cb_desc->data_rate & 0x80) ? 1 : 0;
        pTxFwInfo->TxRate = _rtl92e_rate_mgn_to_hw((u8)cb_desc->data_rate);
        pTxFwInfo->EnableCPUDur = cb_desc->bTxEnableFwCalcDur;
-       pTxFwInfo->Short = rtl8192_QueryIsShort(pTxFwInfo->TxHT,
-                                               pTxFwInfo->TxRate,
-                                               cb_desc);
+       pTxFwInfo->Short = _rtl92e_query_is_short(pTxFwInfo->TxHT,
+                                                 pTxFwInfo->TxRate, cb_desc);
 
        if (pci_dma_mapping_error(priv->pdev, mapping))
                netdev_err(dev, "%s(): DMA Mapping error\n", __func__);