mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-16 14:27:48 +00:00
e32f2b80be
Signed-off-by: Enrico Butera <ebutera@users.berlios.de> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
23 lines
697 B
Diff
23 lines
697 B
Diff
From: Koen Kooi <k-kooi@ti.com>
|
|
Subject: linuxutils: fix build with 2.6.37rcX
|
|
|
|
---
|
|
|
|
--- /tmp/sdmak.c 2010-12-05 18:43:55.000000000 +0100
|
|
+++ linuxutils_2_25_05_11/packages/ti/sdo/linuxutils/sdma/src/module/sdmak.c 2010-12-05 18:48:31.000000000 +0100
|
|
@@ -208,9 +208,12 @@
|
|
}
|
|
|
|
up_read(¤t->mm->mmap_sem);
|
|
-
|
|
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36)
|
|
+ sema_init(&(channels[channel].mutex),1);
|
|
+#else
|
|
init_MUTEX_LOCKED(&(channels[channel].mutex));
|
|
- channels[channel].owner = filp;
|
|
+#endif
|
|
+ channels[channel].owner = filp;
|
|
|
|
if (copy_to_user(argp, &channel, sizeof(channel))) {
|
|
return -EFAULT;
|