Repository : ssh://git@open-mesh.org/batman-adv
On branch : master
commit 0128bee5d58e48ae2d7e9afce9e0ecb2e8158056 Author: Sven Eckelmann sven@narfation.org Date: Thu Jun 18 18:53:21 2015 +0200
batman-adv: Add missing include for clear_/set_bit in MCAST
201a54ba710a ("batman-adv: Make MCAST capability changes atomic") started to use clear_bit and set_bit but did not add the include for these functions.
Signed-off-by: Sven Eckelmann sven@narfation.org Signed-off-by: Marek Lindner mareklindner@neomailbox.ch
0128bee5d58e48ae2d7e9afce9e0ecb2e8158056 net/batman-adv/multicast.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/net/batman-adv/multicast.c b/net/batman-adv/multicast.c index 2fa9983..b8002a5 100644 --- a/net/batman-adv/multicast.c +++ b/net/batman-adv/multicast.c @@ -19,6 +19,7 @@ #include "main.h"
#include <linux/atomic.h> +#include <linux/bitops.h> #include <linux/byteorder/generic.h> #include <linux/errno.h> #include <linux/etherdevice.h>