blob: 68d292b1d864c56f3f2ae67666ea5930b9ad26fd [file] [log] [blame]
Greg Kroah-Hartmanecdfa442009-08-04 15:57:55 -07001/*
2 Power management interface routines.
3 Written by Mariusz Matuszek.
4 This code is currently just a placeholder for later work and
5 does not do anything useful.
6
7 This is part of rtl8180 OpenSource driver.
8 Copyright (C) Andrea Merello 2004 <andreamrl@tiscali.it>
9 Released under the terms of GPL (General Public Licence)
10
11*/
12
13#ifdef CONFIG_PM_RTL
14
15#ifndef R8192E_PM_H
16#define R8192E_PM_H
17
18#include <linux/types.h>
19#include <linux/pci.h>
20
21int rtl8192E_save_state (struct pci_dev *dev, pm_message_t state);
22int rtl8192E_suspend (struct pci_dev *dev, pm_message_t state);
23int rtl8192E_resume (struct pci_dev *dev);
24int rtl8192E_enable_wake (struct pci_dev *dev, pm_message_t state, int enable);
25
26#endif //R8192E_PM_H
27
28#endif // CONFIG_PM_RTL