diff --git a/net/batman-adv/Makefile b/net/batman-adv/Makefile index 6d5c1940667dd84a4339b40c25b02df83570b946..8676d2b1d57438d94ba90cef20e63c345880cdd3 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 similarity index 99% rename from net/batman-adv/bat_debugfs.c rename to net/batman-adv/debugfs.c index acf33e265f9c57c42cbbe5b44c0f7bcc7e0d93df..e45cf0e884cc173af1f9e1223a6c49bca3255251 100644 --- a/net/batman-adv/bat_debugfs.c +++ b/net/batman-adv/debugfs.c @@ -21,7 +21,7 @@ #include -#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 similarity index 100% rename from net/batman-adv/bat_debugfs.h rename to net/batman-adv/debugfs.h diff --git a/net/batman-adv/gateway_client.c b/net/batman-adv/gateway_client.c index 43b9c1763ffffacfe6fe59628604a6dae0f391df..b421cc49d2cd1f83a88b905047df40e2853c4b0b 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 eb765a778ba0813c5e2fe6d03ecf73cca190788d..60f50c5426a891b6612b5d21173d290f605627cc 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 17dcdd90cb744587768f6c0edbab2ad4f4abea41..13c88b25ab319a15260e77d12c65957180c46b9c 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 7a7d8218539300e62616322d0c449117a6d29864..b7c655cf626aa980561b922a86dd3cb23d18fc56 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 #include diff --git a/net/batman-adv/bat_sysfs.c b/net/batman-adv/sysfs.c similarity index 99% rename from net/batman-adv/bat_sysfs.c rename to net/batman-adv/sysfs.c index a0a9ea43157c3a51b27e0d78e8419b42547f319e..66518c75c217459d39f7bc8e79aed34b25b20e22 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 similarity index 100% rename from net/batman-adv/bat_sysfs.h rename to net/batman-adv/sysfs.h