public inbox for b.a.t.m.a.n@lists.open-mesh.org
 help / color / mirror / Atom feed
* [B.A.T.M.A.N.] [PATCH 1/6] batman-adv: Prefix local debugfs structs with batadv_
@ 2012-06-05 20:31 Sven Eckelmann
  2012-06-05 20:31 ` [B.A.T.M.A.N.] [PATCH 2/6] batman-adv: Prefix hash struct and typedef " Sven Eckelmann
                   ` (5 more replies)
  0 siblings, 6 replies; 12+ messages in thread
From: Sven Eckelmann @ 2012-06-05 20:31 UTC (permalink / raw)
  To: b.a.t.m.a.n

Reported-by: Martin Hundebøll <martin@hundeboll.net>
Signed-off-by: Sven Eckelmann <sven@narfation.org>
---
 bat_debugfs.c |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/bat_debugfs.c b/bat_debugfs.c
index 2693be0..fbdd5d6 100644
--- a/bat_debugfs.c
+++ b/bat_debugfs.c
@@ -265,13 +265,13 @@ static int batadv_vis_data_open(struct inode *inode, struct file *file)
 	return single_open(file, batadv_vis_seq_print_text, net_dev);
 }
 
-struct bat_debuginfo {
+struct batadv_debuginfo {
 	struct attribute attr;
 	const struct file_operations fops;
 };
 
 #define BATADV_DEBUGINFO(_name, _mode, _open)		\
-struct bat_debuginfo batadv_debuginfo_##_name = {	\
+struct batadv_debuginfo batadv_debuginfo_##_name = {	\
 	.attr = { .name = __stringify(_name),		\
 		  .mode = _mode, },			\
 	.fops = { .owner = THIS_MODULE,			\
@@ -294,7 +294,7 @@ static BATADV_DEBUGINFO(transtable_local, S_IRUGO,
 			batadv_transtable_local_open);
 static BATADV_DEBUGINFO(vis_data, S_IRUGO, batadv_vis_data_open);
 
-static struct bat_debuginfo *batadv_mesh_debuginfos[] = {
+static struct batadv_debuginfo *batadv_mesh_debuginfos[] = {
 	&batadv_debuginfo_originators,
 	&batadv_debuginfo_gateways,
 	&batadv_debuginfo_transtable_global,
@@ -308,7 +308,7 @@ static struct bat_debuginfo *batadv_mesh_debuginfos[] = {
 
 void batadv_debugfs_init(void)
 {
-	struct bat_debuginfo *bat_debug;
+	struct batadv_debuginfo *bat_debug;
 	struct dentry *file;
 
 	batadv_debugfs = debugfs_create_dir(BATADV_DEBUGFS_SUBDIR, NULL);
@@ -340,7 +340,7 @@ void batadv_debugfs_destroy(void)
 int batadv_debugfs_add_meshif(struct net_device *dev)
 {
 	struct bat_priv *bat_priv = netdev_priv(dev);
-	struct bat_debuginfo **bat_debug;
+	struct batadv_debuginfo **bat_debug;
 	struct dentry *file;
 
 	if (!batadv_debugfs)
-- 
1.7.10


^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2012-06-10 12:01 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-05 20:31 [B.A.T.M.A.N.] [PATCH 1/6] batman-adv: Prefix local debugfs structs with batadv_ Sven Eckelmann
2012-06-05 20:31 ` [B.A.T.M.A.N.] [PATCH 2/6] batman-adv: Prefix hash struct and typedef " Sven Eckelmann
2012-06-10 11:34   ` Marek Lindner
2012-06-05 20:31 ` [B.A.T.M.A.N.] [PATCH 3/6] batman-adv: Prefix local sysfs struct " Sven Eckelmann
2012-06-10 11:36   ` Marek Lindner
2012-06-05 20:31 ` [B.A.T.M.A.N.] [PATCH 4/6] batman-adv: Prefix packet structs " Sven Eckelmann
2012-06-10 11:53   ` Marek Lindner
2012-06-05 20:31 ` [B.A.T.M.A.N.] [PATCH 5/6] batman-adv: Prefix types " Sven Eckelmann
2012-06-10 11:55   ` Marek Lindner
2012-06-05 20:31 ` [B.A.T.M.A.N.] [PATCH 6/6] batman-adv: Transform BATADV_LOG_BUFF(idx) into function Sven Eckelmann
2012-06-10 12:01   ` Marek Lindner
2012-06-10 11:30 ` [B.A.T.M.A.N.] [PATCH 1/6] batman-adv: Prefix local debugfs structs with batadv_ Marek Lindner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox