wl1251_ps.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. #ifndef __WL1251_PS_H__
  2. #define __WL1251_PS_H__
  3. /*
  4. * This file is part of wl1251
  5. *
  6. * Copyright (c) 1998-2007 Texas Instruments Incorporated
  7. * Copyright (C) 2008 Nokia Corporation
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * version 2 as published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful, but
  14. * WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  21. * 02110-1301 USA
  22. *
  23. */
  24. #include "wl1251.h"
  25. #include "wl1251_acx.h"
  26. int wl1251_ps_set_mode(struct wl1251 *wl, enum wl1251_cmd_ps_mode mode);
  27. void wl1251_ps_elp_sleep(struct wl1251 *wl);
  28. int wl1251_ps_elp_wakeup(struct wl1251 *wl);
  29. void wl1251_elp_work(struct work_struct *work);
  30. #endif /* __WL1251_PS_H__ */