summaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-3.3/140-ixp4xx_hss_module_h_include.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2015-01-24 20:02:02 +0000
committerFelix Fietkau <nbd@openwrt.org>2015-01-24 20:02:02 +0000
commit186db26d05034df31e0ced1b8b5d7d62ebe39b8f (patch)
tree824087a6066ce762568c070bfda62a2508960bf6 /target/linux/generic/patches-3.3/140-ixp4xx_hss_module_h_include.patch
parented60bb8360a0b8dfaa774a4628a37152b9a462f5 (diff)
downloadmaster-31e0f0ae-186db26d05034df31e0ced1b8b5d7d62ebe39b8f.tar.gz
master-31e0f0ae-186db26d05034df31e0ced1b8b5d7d62ebe39b8f.tar.bz2
master-31e0f0ae-186db26d05034df31e0ced1b8b5d7d62ebe39b8f.zip
kernel: remove linux 3.3 patches and config
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 44109
Diffstat (limited to 'target/linux/generic/patches-3.3/140-ixp4xx_hss_module_h_include.patch')
-rw-r--r--target/linux/generic/patches-3.3/140-ixp4xx_hss_module_h_include.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/target/linux/generic/patches-3.3/140-ixp4xx_hss_module_h_include.patch b/target/linux/generic/patches-3.3/140-ixp4xx_hss_module_h_include.patch
deleted file mode 100644
index 94acf37803..0000000000
--- a/target/linux/generic/patches-3.3/140-ixp4xx_hss_module_h_include.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From 32e857cd1fbb006f56a99a2eab998173b1576533 Mon Sep 17 00:00:00 2001
-From: Florian Fainelli <florian@openwrt.org>
-Date: Mon, 10 Sep 2012 10:18:57 +0200
-Subject: [PATCH net] ixp4xx_hss: fix build failure after logging conversion
-
-Commit c75bb2c6f0cf455c23e60f14d780e841dd47f801 (ixp4xx_hss: Update to
-current logging forms) converted the ixp4xx_hss module to use the current
-logging macros, but forgot to include linux/module.h, leading to the
-following build failures:
-
- CC [M] drivers/net/wan/ixp4xx_hss.o
- drivers/net/wan/ixp4xx_hss.c:1412:20: error: expected ';', ',' or ')'
- before string constant
- drivers/net/wan/ixp4xx_hss.c:1413:25: error: expected ';', ',' or ')'
- before string constant
- drivers/net/wan/ixp4xx_hss.c:1414:21: error: expected ';', ',' or ')'
- before string constant
- drivers/net/wan/ixp4xx_hss.c:1415:19: error: expected ';', ',' or ')'
- before string constant
- make[8]: *** [drivers/net/wan/ixp4xx_hss.o] Error 1
-
-CC: stable@vger.kernel.org
-Signed-off-by: Florian Fainelli <florian@openwrt.org>
----
-[stable: 3.1+]
-
- drivers/net/wan/ixp4xx_hss.c | 1 +
- 1 file changed, 1 insertion(+)
-
---- a/drivers/net/wan/ixp4xx_hss.c
-+++ b/drivers/net/wan/ixp4xx_hss.c
-@@ -10,6 +10,7 @@
-
- #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
-
-+#include <linux/module.h>
- #include <linux/bitops.h>
- #include <linux/cdev.h>
- #include <linux/dma-mapping.h>