diff options
author | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-08-07 14:29:11 +0200 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-09-02 16:29:23 +0200 |
commit | 95acc4fe0e31ae91d485635c021d259e06785b5d (patch) | |
tree | aa079a7cb0e09c4f2ba655925095fc27186c27a9 /target/linux/generic/backport-4.14/270-batman-adv-Let-packet.h-include-its-headers-directly.patch | |
parent | 66ab1fb395f85e018cb1c6ae0d3a14aa46373f84 (diff) | |
download | upstream-95acc4fe0e31ae91d485635c021d259e06785b5d.tar.gz upstream-95acc4fe0e31ae91d485635c021d259e06785b5d.tar.bz2 upstream-95acc4fe0e31ae91d485635c021d259e06785b5d.zip |
kernel: remove support for kernel 4.14
No target uses kernel 4.14 anymore.
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Diffstat (limited to 'target/linux/generic/backport-4.14/270-batman-adv-Let-packet.h-include-its-headers-directly.patch')
-rw-r--r-- | target/linux/generic/backport-4.14/270-batman-adv-Let-packet.h-include-its-headers-directly.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/target/linux/generic/backport-4.14/270-batman-adv-Let-packet.h-include-its-headers-directly.patch b/target/linux/generic/backport-4.14/270-batman-adv-Let-packet.h-include-its-headers-directly.patch deleted file mode 100644 index 9b3dfc1fd3..0000000000 --- a/target/linux/generic/backport-4.14/270-batman-adv-Let-packet.h-include-its-headers-directly.patch +++ /dev/null @@ -1,36 +0,0 @@ -From: Sven Eckelmann <sven.eckelmann@openmesh.com> -Date: Thu, 21 Dec 2017 10:17:38 +0100 -Subject: [PATCH] batman-adv: Let packet.h include its headers directly - -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 <sven.eckelmann@openmesh.com> -Signed-off-by: David S. Miller <davem@davemloft.net> ---- - ---- a/net/batman-adv/main.h -+++ b/net/batman-adv/main.h -@@ -184,10 +184,8 @@ enum batadv_uev_type { - - /* Kernel headers */ - --#include <linux/bitops.h> /* for packet.h */ - #include <linux/compiler.h> - #include <linux/etherdevice.h> --#include <linux/if_ether.h> /* for packet.h */ - #include <linux/if_vlan.h> - #include <linux/jiffies.h> - #include <linux/percpu.h> ---- a/net/batman-adv/packet.h -+++ b/net/batman-adv/packet.h -@@ -19,6 +19,8 @@ - #define _NET_BATMAN_ADV_PACKET_H_ - - #include <asm/byteorder.h> -+#include <linux/bitops.h> -+#include <linux/if_ether.h> - #include <linux/types.h> - - #define batadv_tp_is_error(n) ((u8)(n) > 127 ? 1 : 0) |