staging: rtl8192e: Rename rtl8192_alloc_rx_desc_ring

Use naming schema found in other rtlwifi devices.
Rename rtl8192_alloc_rx_desc_ring to _rtl92e_alloc_rx_ring.

Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Mateusz Kulikowski 2015-09-20 10:13:00 +02:00 committed by Greg Kroah-Hartman
parent 93cc57b5d4
commit 9d148965eb

View File

@ -1812,7 +1812,7 @@ static short rtl8192_tx(struct net_device *dev, struct sk_buff *skb)
return 0;
}
static short rtl8192_alloc_rx_desc_ring(struct net_device *dev)
static short _rtl92e_alloc_rx_ring(struct net_device *dev)
{
struct r8192_priv *priv = rtllib_priv(dev);
struct rx_desc *entry = NULL;
@ -1894,7 +1894,7 @@ static short _rtl92e_pci_initdescring(struct net_device *dev)
int i;
struct r8192_priv *priv = rtllib_priv(dev);
ret = rtl8192_alloc_rx_desc_ring(dev);
ret = _rtl92e_alloc_rx_ring(dev);
if (ret)
return ret;