diff options
author | Denys Dmytriyenko <denys@ti.com> | 2012-06-11 20:44:56 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2012-06-11 20:44:56 -0400 |
commit | 88867c1d96684925027a0ecc9e25c6ea70040cc6 (patch) | |
tree | e1ad8651aa7663850f6dc1108b278f56a2b92a91 /recipes-ti/linuxutils/ti-linuxutils/linuxutils-BKL-fix-2.patch | |
parent | a1e2573369c6714956af561523ba274aa9c185f7 (diff) | |
download | meta-ti-split.tar.gz |
extras: move things to extrassplit
Move non-essential, outdated, best-effort pieces, as well, as those requiring
extra non-standard dependencies besides oe-core.
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-ti/linuxutils/ti-linuxutils/linuxutils-BKL-fix-2.patch')
-rw-r--r-- | recipes-ti/linuxutils/ti-linuxutils/linuxutils-BKL-fix-2.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/recipes-ti/linuxutils/ti-linuxutils/linuxutils-BKL-fix-2.patch b/recipes-ti/linuxutils/ti-linuxutils/linuxutils-BKL-fix-2.patch deleted file mode 100644 index 1438003c..00000000 --- a/recipes-ti/linuxutils/ti-linuxutils/linuxutils-BKL-fix-2.patch +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | From: Koen Kooi <k-kooi@ti.com> | ||
2 | Subject: linuxutils: fix build with 2.6.37rcX | ||
3 | |||
4 | --- | ||
5 | |||
6 | --- /tmp/sdmak.c 2010-12-05 18:43:55.000000000 +0100 | ||
7 | +++ linuxutils_2_25_05_11/packages/ti/sdo/linuxutils/sdma/src/module/sdmak.c 2010-12-05 18:48:31.000000000 +0100 | ||
8 | @@ -208,9 +208,12 @@ | ||
9 | } | ||
10 | |||
11 | up_read(¤t->mm->mmap_sem); | ||
12 | - | ||
13 | +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36) | ||
14 | + sema_init(&(channels[channel].mutex),1); | ||
15 | +#else | ||
16 | init_MUTEX_LOCKED(&(channels[channel].mutex)); | ||
17 | - channels[channel].owner = filp; | ||
18 | +#endif | ||
19 | + channels[channel].owner = filp; | ||
20 | |||
21 | if (copy_to_user(argp, &channel, sizeof(channel))) { | ||
22 | return -EFAULT; | ||