staging: rtl8192e: Rename rtl8192E_suspend
Use naming schema found in other rtlwifi devices. Rename rtl8192E_suspend to rtl92e_suspend. Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0ba6623df9
commit
3683dc1f08
3 changed files with 3 additions and 3 deletions
|
@ -83,7 +83,7 @@ static struct pci_driver rtl8192_pci_driver = {
|
|||
.id_table = rtl8192_pci_id_tbl, /* PCI_ID table */
|
||||
.probe = rtl8192_pci_probe, /* probe fn */
|
||||
.remove = rtl8192_pci_disconnect, /* remove fn */
|
||||
.suspend = rtl8192E_suspend, /* PM suspend fn */
|
||||
.suspend = rtl92e_suspend, /* PM suspend fn */
|
||||
.resume = rtl92e_resume, /* PM resume fn */
|
||||
};
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#include "rtl_pm.h"
|
||||
|
||||
|
||||
int rtl8192E_suspend(struct pci_dev *pdev, pm_message_t state)
|
||||
int rtl92e_suspend(struct pci_dev *pdev, pm_message_t state)
|
||||
{
|
||||
struct net_device *dev = pci_get_drvdata(pdev);
|
||||
struct r8192_priv *priv = rtllib_priv(dev);
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#include <linux/types.h>
|
||||
#include <linux/pci.h>
|
||||
|
||||
int rtl8192E_suspend(struct pci_dev *dev, pm_message_t state);
|
||||
int rtl92e_suspend(struct pci_dev *dev, pm_message_t state);
|
||||
int rtl92e_resume(struct pci_dev *dev);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue