diff options
author | Markus Pargmann <mpa@pengutronix.de> | 2014-12-26 11:41:18 (GMT) |
---|---|---|
committer | Antonio Quartulli <antonio@meshcoding.com> | 2015-05-29 08:13:35 (GMT) |
commit | 9bb218828c8f4fa6587af93e248903c96ce469d0 (patch) | |
tree | f7032b450be40f839eea8fe160290e5c5ab6d21e /net/batman-adv/Makefile | |
parent | 83e8b87721f21b26b843633caca8ef453e943623 (diff) | |
download | linux-9bb218828c8f4fa6587af93e248903c96ce469d0.tar.xz |
batman-adv: debugfs, avoid compiling for !DEBUG_FS
Normally the debugfs framework will return error pointer with -ENODEV
for function calls when DEBUG_FS is not set.
batman does not notice this error code and continues trying to create
debugfs files and executes more code. We can avoid this code execution
by disabling compiling debugfs.c when DEBUG_FS is not set.
Signed-off-by: Markus Pargmann <mpa@pengutronix.de>
Signed-off-by: Marek Lindner <mareklindner@neomailbox.ch>
Diffstat (limited to 'net/batman-adv/Makefile')
-rw-r--r-- | net/batman-adv/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/batman-adv/Makefile b/net/batman-adv/Makefile index 79833eb..bd7e343 100644 --- a/net/batman-adv/Makefile +++ b/net/batman-adv/Makefile @@ -20,7 +20,7 @@ obj-$(CONFIG_BATMAN_ADV) += batman-adv.o batman-adv-y += bat_iv_ogm.o batman-adv-y += bitarray.o batman-adv-$(CONFIG_BATMAN_ADV_BLA) += bridge_loop_avoidance.o -batman-adv-y += debugfs.o +batman-adv-$(CONFIG_DEBUG_FS) += debugfs.o batman-adv-$(CONFIG_BATMAN_ADV_DAT) += distributed-arp-table.o batman-adv-y += fragmentation.o batman-adv-y += gateway_client.o |