mirror of https://gitee.com/openkylin/linux.git
staging: rtl8192e: Rename rtl8192_parse_pci_configuration
Use naming schema found in other rtlwifi devices. Rename rtl8192_parse_pci_configuration to _rtl92e_parse_pci_configuration. Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a1252b09e9
commit
440379c54b
|
@ -25,7 +25,7 @@
|
||||||
#include "rtl_pci.h"
|
#include "rtl_pci.h"
|
||||||
#include "rtl_core.h"
|
#include "rtl_core.h"
|
||||||
|
|
||||||
static void rtl8192_parse_pci_configuration(struct pci_dev *pdev,
|
static void _rtl92e_parse_pci_configuration(struct pci_dev *pdev,
|
||||||
struct net_device *dev)
|
struct net_device *dev)
|
||||||
{
|
{
|
||||||
struct r8192_priv *priv = (struct r8192_priv *)rtllib_priv(dev);
|
struct r8192_priv *priv = (struct r8192_priv *)rtllib_priv(dev);
|
||||||
|
@ -92,7 +92,7 @@ bool rtl92e_check_adapter(struct pci_dev *pdev, struct net_device *dev)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
rtl8192_parse_pci_configuration(pdev, dev);
|
_rtl92e_parse_pci_configuration(pdev, dev);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue