aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-4.4/010-net-remove-unnecessary-semicolon-in-netdev_alloc_pcp.patch
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2016-01-01 22:02:47 +0000
committerImre Kaloz <kaloz@openwrt.org>2016-01-01 22:02:47 +0000
commitcae1c44e4f2faab7174b7897b9078f2a2a3a5ac8 (patch)
tree8e66e447360f6cac21db8ad888384ec1794dee17 /target/linux/generic/patches-4.4/010-net-remove-unnecessary-semicolon-in-netdev_alloc_pcp.patch
parent9242d27b4a91c2cf2e787d3a893de3a95890e717 (diff)
downloadupstream-cae1c44e4f2faab7174b7897b9078f2a2a3a5ac8.tar.gz
upstream-cae1c44e4f2faab7174b7897b9078f2a2a3a5ac8.tar.bz2
upstream-cae1c44e4f2faab7174b7897b9078f2a2a3a5ac8.zip
generic/4.4: update to 4.4-rc7
Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 48059
Diffstat (limited to 'target/linux/generic/patches-4.4/010-net-remove-unnecessary-semicolon-in-netdev_alloc_pcp.patch')
-rw-r--r--target/linux/generic/patches-4.4/010-net-remove-unnecessary-semicolon-in-netdev_alloc_pcp.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/target/linux/generic/patches-4.4/010-net-remove-unnecessary-semicolon-in-netdev_alloc_pcp.patch b/target/linux/generic/patches-4.4/010-net-remove-unnecessary-semicolon-in-netdev_alloc_pcp.patch
deleted file mode 100644
index b8b9a83022..0000000000
--- a/target/linux/generic/patches-4.4/010-net-remove-unnecessary-semicolon-in-netdev_alloc_pcp.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From: Felix Fietkau <nbd@openwrt.org>
-Date: Sat, 5 Dec 2015 13:53:36 +0100
-Subject: [PATCH] net: remove unnecessary semicolon in
- netdev_alloc_pcpu_stats()
-
-This semicolon causes a build error if the function call is wrapped in
-parentheses.
-
-Fixes: aabc92bbe3cf ("net: add __netdev_alloc_pcpu_stats() to indicate gfp flags")
-Reported-by: Imre Kaloz <kaloz@openwrt.org>
-Signed-off-by: Felix Fietkau <nbd@openwrt.org>
----
-
---- a/include/linux/netdevice.h
-+++ b/include/linux/netdevice.h
-@@ -2084,7 +2084,7 @@ struct pcpu_sw_netstats {
- })
-
- #define netdev_alloc_pcpu_stats(type) \
-- __netdev_alloc_pcpu_stats(type, GFP_KERNEL);
-+ __netdev_alloc_pcpu_stats(type, GFP_KERNEL)
-
- #include <linux/notifier.h>
-