summaryrefslogtreecommitdiff
path: root/drivers/staging/batman-adv/bat_debugfs.h
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2010-06-28 14:02:37 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2010-06-28 14:02:37 +1000
commit5ea05de9f2e3eb247648a3f15032f1777f1e6d4b (patch)
tree13e6ebc3e5266b7dc4f92c14a6d74320d7ade8ec /drivers/staging/batman-adv/bat_debugfs.h
parent887534f673c010693d213184c2b34e0a2f483211 (diff)
parent12513b76a021e5b41a9d5d5981da75dfd6480890 (diff)
Merge remote branch 'staging-next/staging-next'
Conflicts: drivers/staging/batman-adv/bat_sysfs.c drivers/staging/batman-adv/device.c
Diffstat (limited to 'drivers/staging/batman-adv/bat_debugfs.h')
-rw-r--r--drivers/staging/batman-adv/bat_debugfs.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/drivers/staging/batman-adv/bat_debugfs.h b/drivers/staging/batman-adv/bat_debugfs.h
new file mode 100644
index 000000000000..5cdd3327d98c
--- /dev/null
+++ b/drivers/staging/batman-adv/bat_debugfs.h
@@ -0,0 +1,33 @@
+/*
+ * Copyright (C) 2010 B.A.T.M.A.N. contributors:
+ *
+ * Marek Lindner
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of version 2 of the GNU General Public
+ * License as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ * 02110-1301, USA
+ *
+ */
+
+
+#ifndef BAT_DEBUGFS_H
+#define BAT_DEBUGFS_H
+
+#define DEBUGFS_BAT_SUBDIR "batman_adv"
+
+void debugfs_init(void);
+void debugfs_destroy(void);
+int debugfs_add_meshif(struct net_device *dev);
+void debugfs_del_meshif(struct net_device *dev);
+
+#endif