summaryrefslogtreecommitdiff
path: root/net/batman-adv/Makefile
diff options
context:
space:
mode:
authorSven Eckelmann <sven@narfation.org>2012-06-10 21:58:51 (GMT)
committerAntonio Quartulli <ordex@autistici.org>2012-07-01 20:47:22 (GMT)
commitb706b13b6cfde22d1f4adc540fd89426247c1e3e (patch)
treec729d6580d4a249f97317f210078b30db821c8cb /net/batman-adv/Makefile
parenta8a0a62d1f173620f150830db437ddd65a103d49 (diff)
downloadlinux-b706b13b6cfde22d1f4adc540fd89426247c1e3e.tar.xz
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/Makefile')
-rw-r--r--net/batman-adv/Makefile4
1 files changed, 2 insertions, 2 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