summaryrefslogtreecommitdiff
path: root/drivers/staging/cw1200/bh.h
diff options
context:
space:
mode:
authorPhilippe Langlais <philippe.langlais@stericsson.com>2012-06-04 19:45:35 +0800
committerPhilippe Langlais <philippe.langlais@stericsson.com>2012-06-04 19:45:35 +0800
commit6da6382191c30868dd8bf0624f6c2439339b7760 (patch)
tree8d6f273d0a4db9c0651371386c67e6c4f7de98c9 /drivers/staging/cw1200/bh.h
parent06c48e022c9737a840da15fd47c7df24dc5d5b9a (diff)
parent5c5f4d2df9e9c8eacfdab76ac8060d80c802616c (diff)
Merge topic branch 'wlan' into integration-linux-ux500
Diffstat (limited to 'drivers/staging/cw1200/bh.h')
-rw-r--r--drivers/staging/cw1200/bh.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/drivers/staging/cw1200/bh.h b/drivers/staging/cw1200/bh.h
new file mode 100644
index 00000000000..ea4598afc43
--- /dev/null
+++ b/drivers/staging/cw1200/bh.h
@@ -0,0 +1,30 @@
+/*
+ * Device handling thread interface for mac80211 ST-Ericsson CW1200 drivers
+ *
+ * Copyright (c) 2010, ST-Ericsson
+ * Author: Dmitry Tarnyagin <dmitry.tarnyagin@stericsson.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+#ifndef CW1200_BH_H
+#define CW1200_BH_H
+
+/* extern */ struct cw1200_common;
+
+#define SDIO_BLOCK_SIZE (512)
+
+int cw1200_register_bh(struct cw1200_common *priv);
+void cw1200_unregister_bh(struct cw1200_common *priv);
+void cw1200_irq_handler(struct cw1200_common *priv);
+void cw1200_bh_wakeup(struct cw1200_common *priv);
+int cw1200_bh_suspend(struct cw1200_common *priv);
+int cw1200_bh_resume(struct cw1200_common *priv);
+/* Must be called from BH thread. */
+void cw1200_enable_powersave(struct cw1200_common *priv,
+ bool enable);
+int wsm_release_tx_buffer(struct cw1200_common *priv, int count);
+
+#endif /* CW1200_BH_H */