summaryrefslogtreecommitdiffstats
path: root/abs/core/kernel26/2.6.37.1-fix-no-more-unsigned.patch
diff options
context:
space:
mode:
authorCecil <knoppmyth@gmail.com>2011-07-09 10:02:56 (GMT)
committerCecil <knoppmyth@gmail.com>2011-07-09 10:02:56 (GMT)
commit4491d00579e40fd2849aba1396e57547ef2b0e8f (patch)
treef0bd5f94d5767be64a126aa86cdd544464ad7e01 /abs/core/kernel26/2.6.37.1-fix-no-more-unsigned.patch
parentd48d2eaa7d4fc86c38e98105cbd4a0f4c0404de8 (diff)
downloadlinhes_pkgbuild-4491d00579e40fd2849aba1396e57547ef2b0e8f.zip
linhes_pkgbuild-4491d00579e40fd2849aba1396e57547ef2b0e8f.tar.gz
linhes_pkgbuild-4491d00579e40fd2849aba1396e57547ef2b0e8f.tar.bz2
kernel26:Latest stable 2.6.37 and ck2. Removed sky2 NIC module in favor of sk98lin.
Diffstat (limited to 'abs/core/kernel26/2.6.37.1-fix-no-more-unsigned.patch')
-rw-r--r--abs/core/kernel26/2.6.37.1-fix-no-more-unsigned.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/abs/core/kernel26/2.6.37.1-fix-no-more-unsigned.patch b/abs/core/kernel26/2.6.37.1-fix-no-more-unsigned.patch
new file mode 100644
index 0000000..f132379
--- /dev/null
+++ b/abs/core/kernel26/2.6.37.1-fix-no-more-unsigned.patch
@@ -0,0 +1,20 @@
+--- linux-2.6.37.orig/kernel/sched_bfs.c 2011-02-18 23:09:39.000000000 +0200
++++ linux-2.6.37/kernel/sched_bfs.c 2011-02-18 23:13:17.368000023 +0200
+@@ -3352,7 +3352,7 @@
+ * This waits for either a completion of a specific task to be signaled or for a
+ * specified timeout to expire. It is interruptible. The timeout is in jiffies.
+ */
+-unsigned long __sched
++long __sched
+ wait_for_completion_interruptible_timeout(struct completion *x,
+ unsigned long timeout)
+ {
+@@ -3385,7 +3385,7 @@
+ * signaled or for a specified timeout to expire. It can be
+ * interrupted by a kill signal. The timeout is in jiffies.
+ */
+-unsigned long __sched
++long __sched
+ wait_for_completion_killable_timeout(struct completion *x,
+ unsigned long timeout)
+ {