summaryrefslogtreecommitdiff
path: root/tx.h
diff options
context:
space:
mode:
authorDavid Lin <dlin@marvell.com>2015-06-19 04:49:53 +0800
committerDavid Lin <dlin@marvell.com>2015-06-19 04:49:53 +0800
commit2b93ae5bf32e49ab1b0eff2b27c943ba6adf9734 (patch)
tree3ef232489b0f0ce5624ebadaa4e6a35ff94e4626 /tx.h
parentf6f2b26593a35d269eb8c4475234965384c010af (diff)
Commit mwlwifi driver 10.3.0.3
1. Modified the code in order to be accepted by linux wireless. 2. Let Tx thread be more modularized. 3. Fixed issue #20. Note: Please check hostapd sample configuration files to know current setting for vht_capab. Signed-off-by: David Lin <dlin@marvell.com>
Diffstat (limited to 'tx.h')
-rw-r--r--tx.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/tx.h b/tx.h
new file mode 100644
index 0000000..df485f9
--- /dev/null
+++ b/tx.h
@@ -0,0 +1,22 @@
+/*
+ * Copyright (C) 2006-2015, Marvell International Ltd.
+ *
+ * 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.
+ */
+
+/* Description: This file defines transmit related functions.
+ */
+
+#ifndef _mwl_tx_h_
+#define _mwl_tx_h_
+
+int mwl_tx_init(struct ieee80211_hw *hw);
+void mwl_tx_deinit(struct ieee80211_hw *hw);
+void mwl_tx_xmit(struct ieee80211_hw *hw,
+ struct ieee80211_tx_control *control,
+ struct sk_buff *skb);
+void mwl_tx_done(unsigned long data);
+
+#endif /* _mwl_tx_h_ */