summaryrefslogtreecommitdiff
path: root/debugfs.h
diff options
context:
space:
mode:
authorDavid Lin <dlin@marvell.com>2015-10-16 12:52:21 +0800
committerDavid Lin <dlin@marvell.com>2015-10-16 12:52:21 +0800
commit7a6aff718d2de7dee6f9d82eae8af91667e8ee86 (patch)
treef814ad67ecaccb2f005ba5f739632f8a398f629a /debugfs.h
parent59e0d3d167a5bc2c03010df4ed54cc0653b5ae58 (diff)
Commit mwlwifi driver 10.3.0.10.
1. Enhance Tx throughput. 2. Add the mechanism to stop and wake up sub Tx queue via ieee80211_stop_queue() and ieee80211_wake_queue(). 3. Refine code related to BA. 4. Replace BUG_ON() with WARN_ON() as suggested by LWN. 5. Acknowledge all packets in AMSDU to mac80211 after transmission is done. 6. Merge patch from community: fix a problem where the resources are left claimed if the firmware fails to load. 7. Replace dma_alloc_coherent() with dmam_alloc_coherent(). 8. Add debugfs. 9. Add linux version check to apply new API ieee80211_hw_set() existed after kernel 4.2. 10. Rearrange spin lock sequences in flushing AMSDU function to avoid dead lock on OpenWrt platform. Signed-off-by: David Lin <dlin@marvell.com>
Diffstat (limited to 'debugfs.h')
-rw-r--r--debugfs.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/debugfs.h b/debugfs.h
new file mode 100644
index 0000000..dfc2a3c
--- /dev/null
+++ b/debugfs.h
@@ -0,0 +1,24 @@
+/*
+ * Copyright (C) 2006-2015, Marvell International Ltd.
+ *
+ * This software file (the "File") is distributed by Marvell International
+ * Ltd. under the terms of the GNU General Public License Version 2, June 1991
+ * (the "License"). You may use, redistribute and/or modify this File in
+ * accordance with the terms and conditions of the License, a copy of which
+ * is available by writing to the Free Software Foundation, Inc.
+ *
+ * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
+ * ARE EXPRESSLY DISCLAIMED. The License provides additional details about
+ * this warranty disclaimer.
+ */
+
+/* Description: This file defines debug fs related functions. */
+
+#ifndef _debugfs_h_
+#define _debugfs_h_
+
+void mwl_debugfs_init(struct ieee80211_hw *hw);
+void mwl_debugfs_remove(struct ieee80211_hw *hw);
+
+#endif /* _debugfs_h_ */