summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-09-28 19:07:37 +0000
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-09-28 19:07:37 +0000
commit98eb073946e453d7386181b0a0b4435f9aaafd73 (patch)
treef343750186d848094e0963e8f5387a7cb1b6e214
parentbaf609d512de12afdfdec9723b6d79a6cd8e61f9 (diff)
[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
-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 fdf749d43..3e2423ffe 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 ba9a93c13..d43baf01d 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;