• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/staging/rtl8192su/
1/*
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
14#ifndef R8192_PM_H
15#define R8192_PM_H
16
17#include <linux/types.h>
18#include <linux/usb.h>
19
20int rtl8192U_save_tate (struct pci_dev *dev, u32 state);
21int rtl8192U_suspend(struct usb_interface *intf, pm_message_t state);
22int rtl8192U_resume (struct usb_interface *intf);
23int rtl8192U_enable_wake (struct pci_dev *dev, u32 state, int enable);
24
25#endif //R8192U_PM_H
26