diff options
author | Sven Eckelmann <sven@narfation.org> | 2012-06-10 23:58:51 +0200 |
---|---|---|
committer | Antonio Quartulli <ordex@autistici.org> | 2012-07-01 22:47:22 +0200 |
commit | b706b13b6cfde22d1f4adc540fd89426247c1e3e (patch) | |
tree | c729d6580d4a249f97317f210078b30db821c8cb /net/batman-adv | |
parent | a8a0a62d1f173620f150830db437ddd65a103d49 (diff) | |
download | op-kernel-dev-b706b13b6cfde22d1f4adc540fd89426247c1e3e.zip op-kernel-dev-b706b13b6cfde22d1f4adc540fd89426247c1e3e.tar.gz |
batman-adv: Remove bat_ prefix from bat_{debugfs, sysfs}.{c, h}
The "bat_" prefix in the source files implementing the batman-adv sysfs and
debugfs interface doesn't have a special meaning and are only used by these
files and files that implement the actual B.A.T.M.A.N. path finding algorithm.
The prefix is better suited to mark files that are used to implement the main
part of the path finding. All other files should not use it and therefore gets
renamed.
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Diffstat (limited to 'net/batman-adv')
-rw-r--r-- | net/batman-adv/Makefile | 4 | ||||
-rw-r--r-- | net/batman-adv/debugfs.c (renamed from net/batman-adv/bat_debugfs.c) | 2 | ||||
-rw-r--r-- | net/batman-adv/debugfs.h (renamed from net/batman-adv/bat_debugfs.h) | 0 | ||||
-rw-r--r-- | net/batman-adv/gateway_client.c | 2 | ||||
-rw-r--r-- | net/batman-adv/hard-interface.c | 2 | ||||
-rw-r--r-- | net/batman-adv/main.c | 4 | ||||
-rw-r--r-- | net/batman-adv/soft-interface.c | 4 | ||||
-rw-r--r-- | net/batman-adv/sysfs.c (renamed from net/batman-adv/bat_sysfs.c) | 2 | ||||
-rw-r--r-- | net/batman-adv/sysfs.h (renamed from net/batman-adv/bat_sysfs.h) | 0 |
9 files changed, 10 insertions, 10 deletions
diff --git a/net/batman-adv/Makefile b/net/batman-adv/Makefile index 6d5c194..8676d2b 100644 --- a/net/batman-adv/Makefile +++ b/net/batman-adv/Makefile @@ -19,11 +19,10 @@ # obj-$(CONFIG_BATMAN_ADV) += batman-adv.o -batman-adv-y += bat_debugfs.o batman-adv-y += bat_iv_ogm.o -batman-adv-y += bat_sysfs.o batman-adv-y += bitarray.o batman-adv-$(CONFIG_BATMAN_ADV_BLA) += bridge_loop_avoidance.o +batman-adv-y += debugfs.o batman-adv-y += gateway_client.o batman-adv-y += gateway_common.o batman-adv-y += hard-interface.o @@ -35,6 +34,7 @@ batman-adv-y += ring_buffer.o batman-adv-y += routing.o batman-adv-y += send.o batman-adv-y += soft-interface.o +batman-adv-y += sysfs.o batman-adv-y += translation-table.o batman-adv-y += unicast.o batman-adv-y += vis.o diff --git a/net/batman-adv/bat_debugfs.c b/net/batman-adv/debugfs.c index acf33e2..e45cf0e 100644 --- a/net/batman-adv/bat_debugfs.c +++ b/net/batman-adv/debugfs.c @@ -21,7 +21,7 @@ #include <linux/debugfs.h> -#include "bat_debugfs.h" +#include "debugfs.h" #include "translation-table.h" #include "originator.h" #include "hard-interface.h" diff --git a/net/batman-adv/bat_debugfs.h b/net/batman-adv/debugfs.h index 3319e1f..3319e1f 100644 --- a/net/batman-adv/bat_debugfs.h +++ b/net/batman-adv/debugfs.h diff --git a/net/batman-adv/gateway_client.c b/net/batman-adv/gateway_client.c index 43b9c17..b421cc4 100644 --- a/net/batman-adv/gateway_client.c +++ b/net/batman-adv/gateway_client.c @@ -18,7 +18,7 @@ */ #include "main.h" -#include "bat_sysfs.h" +#include "sysfs.h" #include "gateway_client.h" #include "gateway_common.h" #include "hard-interface.h" diff --git a/net/batman-adv/hard-interface.c b/net/batman-adv/hard-interface.c index eb765a7..60f50c5 100644 --- a/net/batman-adv/hard-interface.c +++ b/net/batman-adv/hard-interface.c @@ -23,7 +23,7 @@ #include "send.h" #include "translation-table.h" #include "routing.h" -#include "bat_sysfs.h" +#include "sysfs.h" #include "originator.h" #include "hash.h" #include "bridge_loop_avoidance.h" diff --git a/net/batman-adv/main.c b/net/batman-adv/main.c index 17dcdd9..13c88b2 100644 --- a/net/batman-adv/main.c +++ b/net/batman-adv/main.c @@ -18,8 +18,8 @@ */ #include "main.h" -#include "bat_sysfs.h" -#include "bat_debugfs.h" +#include "sysfs.h" +#include "debugfs.h" #include "routing.h" #include "send.h" #include "originator.h" diff --git a/net/batman-adv/soft-interface.c b/net/batman-adv/soft-interface.c index 7a7d821..b7c655c 100644 --- a/net/batman-adv/soft-interface.c +++ b/net/batman-adv/soft-interface.c @@ -22,12 +22,12 @@ #include "hard-interface.h" #include "routing.h" #include "send.h" -#include "bat_debugfs.h" +#include "debugfs.h" #include "translation-table.h" #include "hash.h" #include "gateway_common.h" #include "gateway_client.h" -#include "bat_sysfs.h" +#include "sysfs.h" #include "originator.h" #include <linux/slab.h> #include <linux/ethtool.h> diff --git a/net/batman-adv/bat_sysfs.c b/net/batman-adv/sysfs.c index a0a9ea4..66518c7 100644 --- a/net/batman-adv/bat_sysfs.c +++ b/net/batman-adv/sysfs.c @@ -18,7 +18,7 @@ */ #include "main.h" -#include "bat_sysfs.h" +#include "sysfs.h" #include "translation-table.h" #include "originator.h" #include "hard-interface.h" diff --git a/net/batman-adv/bat_sysfs.h b/net/batman-adv/sysfs.h index 3fd1412..3fd1412 100644 --- a/net/batman-adv/bat_sysfs.h +++ b/net/batman-adv/sysfs.h |