mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-29 23:46:41 +07:00
[PATCH] orinoco: eliminate the suspend/resume functions if CONFIG_PM is unset
Signed-off-by: Pavel Roskin <proski@gnu.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
6cbaa330f1
commit
95047dd6d0
@ -44,6 +44,7 @@ static inline void orinoco_pci_setup_netdev(struct net_device *dev,
|
||||
pci_name(pdev), pdev->irq, range_type, start, end);
|
||||
}
|
||||
|
||||
#ifdef CONFIG_PM
|
||||
static int orinoco_pci_suspend(struct pci_dev *pdev, pm_message_t state)
|
||||
{
|
||||
struct net_device *dev = pci_get_drvdata(pdev);
|
||||
@ -121,5 +122,9 @@ static int orinoco_pci_resume(struct pci_dev *pdev)
|
||||
|
||||
return 0;
|
||||
}
|
||||
#else
|
||||
#define orinoco_pci_suspend NULL
|
||||
#define orinoco_pci_resume NULL
|
||||
#endif
|
||||
|
||||
#endif /* _ORINOCO_PCI_H */
|
||||
|
Loading…
Reference in New Issue
Block a user