1
2
3
4
5
6
7
8
9 #ifndef CW1200_BH_H
10 #define CW1200_BH_H
11
12 struct cw1200_common;
13
14 int cw1200_register_bh(struct cw1200_common *priv);
15 void cw1200_unregister_bh(struct cw1200_common *priv);
16 void cw1200_irq_handler(struct cw1200_common *priv);
17 void cw1200_bh_wakeup(struct cw1200_common *priv);
18 int cw1200_bh_suspend(struct cw1200_common *priv);
19 int cw1200_bh_resume(struct cw1200_common *priv);
20
21 void cw1200_enable_powersave(struct cw1200_common *priv,
22 bool enable);
23 int wsm_release_tx_buffer(struct cw1200_common *priv, int count);
24
25 #endif