ps.h 514 B

12345678910111213141516171819202122
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * This file is part of wl1251
  4. *
  5. * Copyright (c) 1998-2007 Texas Instruments Incorporated
  6. * Copyright (C) 2008 Nokia Corporation
  7. */
  8. #ifndef __WL1251_PS_H__
  9. #define __WL1251_PS_H__
  10. #include "wl1251.h"
  11. #include "acx.h"
  12. int wl1251_ps_set_mode(struct wl1251 *wl, enum wl1251_station_mode mode);
  13. void wl1251_ps_elp_sleep(struct wl1251 *wl);
  14. int wl1251_ps_elp_wakeup(struct wl1251 *wl);
  15. void wl1251_elp_work(struct work_struct *work);
  16. #endif /* __WL1251_PS_H__ */