The following commit has been merged in the master branch: commit a563ce0b83d3eca33a52d9fee0737553ced3ae6c Author: Sven Eckelmann sven@narfation.org Date: Mon Jun 11 16:46:46 2012 +0200
batman-adv: Fix include of linux/kernel.h
This is a non-fatal include problem that was only detected by cppcheck. The regression was introduced by dfaf026ffbc9e3052a14b8071cac2412c2d0f54e
Signed-off-by: Sven Eckelmann sven@narfation.org
diff --git a/types.h b/types.h index fd86a44..2141c13 100644 --- a/types.h +++ b/types.h @@ -22,7 +22,7 @@
#include "packet.h" #include "bitarray.h" -#include "linux/kernel.h" +#include <linux/kernel.h>
#define BATADV_HEADER_LEN \ (ETH_HLEN + max(sizeof(struct batadv_unicast_packet), \