aboutsummaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2008-09-28 19:07:37 +0000
committerGabor Juhos <juhosg@openwrt.org>2008-09-28 19:07:37 +0000
commit55b2a182ed437f1d4a08b43081c710f507b41a95 (patch)
treef343750186d848094e0963e8f5387a7cb1b6e214 /target
parenta36e7924a2dc7f673779e156bc87f1a95b5ee727 (diff)
downloadupstream-55b2a182ed437f1d4a08b43081c710f507b41a95.tar.gz
upstream-55b2a182ed437f1d4a08b43081c710f507b41a95.tar.bz2
upstream-55b2a182ed437f1d4a08b43081c710f507b41a95.zip
[kernel] 2.6.25/2.6.26: fix compiler warning in imq.c
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12770 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r--target/linux/generic-2.6/patches-2.6.25/150-netfilter_imq.patch2
-rw-r--r--target/linux/generic-2.6/patches-2.6.26/150-netfilter_imq.patch2
2 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.25/150-netfilter_imq.patch b/target/linux/generic-2.6/patches-2.6.25/150-netfilter_imq.patch
index fdf749d432..3e2423ffe9 100644
--- a/target/linux/generic-2.6/patches-2.6.25/150-netfilter_imq.patch
+++ b/target/linux/generic-2.6/patches-2.6.25/150-netfilter_imq.patch
@@ -79,7 +79,7 @@
+
+struct imq_private {
+ struct tasklet_struct tasklet;
-+ int tasklet_pending;
++ unsigned long tasklet_pending;
+};
+
+static nf_hookfn imq_nf_hook;
diff --git a/target/linux/generic-2.6/patches-2.6.26/150-netfilter_imq.patch b/target/linux/generic-2.6/patches-2.6.26/150-netfilter_imq.patch
index ba9a93c135..d43baf01db 100644
--- a/target/linux/generic-2.6/patches-2.6.26/150-netfilter_imq.patch
+++ b/target/linux/generic-2.6/patches-2.6.26/150-netfilter_imq.patch
@@ -79,7 +79,7 @@
+
+struct imq_private {
+ struct tasklet_struct tasklet;
-+ int tasklet_pending;
++ unsigned long tasklet_pending;
+};
+
+static nf_hookfn imq_nf_hook;