From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sven Eckelmann Subject: [RFC v3 1/4] batman-adv: Let packet.h include its headers directly Date: Fri, 15 Dec 2017 19:23:10 +0100 Message-ID: <20171215182313.15767-2-sven.eckelmann@openmesh.com> References: <20171215182313.15767-1-sven.eckelmann@openmesh.com> Cc: b.a.t.m.a.n@lists.open-mesh.org, Eric Dumazet , linux-kernel@vger.kernel.org, Jiri Pirko , "David S . Miller" , Willem de Bruijn , Tom Herbert , Sven Eckelmann To: netdev@vger.kernel.org Return-path: In-Reply-To: <20171215182313.15767-1-sven.eckelmann@openmesh.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org The headers used by packet.h should also be included by it directly. main.h is currently dealing with it in batman-adv, but this will no longer work when this header is moved to include/uapi/linux/. Signed-off-by: Sven Eckelmann --- net/batman-adv/main.h | 2 -- net/batman-adv/packet.h | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net/batman-adv/main.h b/net/batman-adv/main.h index 5ac86df48c42..d5484ac381d3 100644 --- a/net/batman-adv/main.h +++ b/net/batman-adv/main.h @@ -217,10 +217,8 @@ enum batadv_uev_type { /* Kernel headers */ -#include /* for packet.h */ #include #include -#include /* for packet.h */ #include #include #include diff --git a/net/batman-adv/packet.h b/net/batman-adv/packet.h index dccbd4a6f019..6b6563867455 100644 --- a/net/batman-adv/packet.h +++ b/net/batman-adv/packet.h @@ -20,6 +20,8 @@ #define _NET_BATMAN_ADV_PACKET_H_ #include +#include +#include #include /** -- 2.11.0