mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 19:51:25 -04:00
staging: rtl8192e: rtl8192e: rtl_pm.c: Remove some unused functions
Removes some functions that are not used anywhere: rtl8192E_save_state() rtl8192E_enable_wake() This was partially found by using a static code analysis program called cppcheck. Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
e575edfbd7
commit
366de3a08c
@@ -22,12 +22,6 @@
|
||||
#include "r8190P_rtl8256.h"
|
||||
#include "rtl_pm.h"
|
||||
|
||||
int rtl8192E_save_state(struct pci_dev *dev, pm_message_t state)
|
||||
{
|
||||
printk(KERN_NOTICE "r8192E save state call (state %u).\n", state.event);
|
||||
return -EAGAIN;
|
||||
}
|
||||
|
||||
|
||||
int rtl8192E_suspend(struct pci_dev *pdev, pm_message_t state)
|
||||
{
|
||||
@@ -124,11 +118,3 @@ int rtl8192E_resume(struct pci_dev *pdev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
int rtl8192E_enable_wake(struct pci_dev *dev, pm_message_t state, int enable)
|
||||
{
|
||||
printk(KERN_NOTICE "r8192E enable wake call (state %u, enable %d).\n",
|
||||
state.event, enable);
|
||||
return -EAGAIN;
|
||||
}
|
||||
|
||||
|
||||
@@ -23,9 +23,7 @@
|
||||
#include <linux/types.h>
|
||||
#include <linux/pci.h>
|
||||
|
||||
int rtl8192E_save_state(struct pci_dev *dev, pm_message_t state);
|
||||
int rtl8192E_suspend(struct pci_dev *dev, pm_message_t state);
|
||||
int rtl8192E_resume(struct pci_dev *dev);
|
||||
int rtl8192E_enable_wake(struct pci_dev *dev, pm_message_t state, int enable);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user