summaryrefslogtreecommitdiff
path: root/recipes/dvsdk/files/cmem-class-device-27-and-sched-include-fix.patch
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2009-06-12 15:25:16 +0100
committerPhil Blundell <philb@gnu.org>2009-06-12 15:25:16 +0100
commit99aba1b132cf3d716cd76e1da2a2e71cf40a4fe0 (patch)
treedf98215a5e66f96a46ed3877bcec030af1df3354 /recipes/dvsdk/files/cmem-class-device-27-and-sched-include-fix.patch
parent5510cb2417ce83040600903e7fa853c9a9769dbe (diff)
parent50bb21e8041c91963cc6e057074e5d6e857acce5 (diff)
Merge branch 'org.openembedded.dev' of git@new.openembedded.org:openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/dvsdk/files/cmem-class-device-27-and-sched-include-fix.patch')
-rw-r--r--recipes/dvsdk/files/cmem-class-device-27-and-sched-include-fix.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/recipes/dvsdk/files/cmem-class-device-27-and-sched-include-fix.patch b/recipes/dvsdk/files/cmem-class-device-27-and-sched-include-fix.patch
new file mode 100644
index 0000000000..8eb3210bb1
--- /dev/null
+++ b/recipes/dvsdk/files/cmem-class-device-27-and-sched-include-fix.patch
@@ -0,0 +1,23 @@
+diff -uNr codec_engine_2_21/cetools/packages/ti/sdo/linuxutils/cmem/src/module/cmemk.c codec_engine_2_21_fix/cetools/packages/ti/sdo/linuxutils/cmem/src/module/cmemk.c
+--- codec_engine_2_21/cetools/packages/ti/sdo/linuxutils/cmem/src/module/cmemk.c 2009-02-12 22:02:15.000000000 +0000
++++ codec_engine_2_21_fix/cetools/packages/ti/sdo/linuxutils/cmem/src/module/cmemk.c 2009-02-12 22:08:49.000000000 +0000
+@@ -29,6 +29,7 @@
+ #include <linux/mm.h>
+ #include <linux/seq_file.h>
+ #include <linux/vmalloc.h>
++#include <linux/sched.h>
+ #include <asm/cacheflush.h>
+ #include <asm/uaccess.h>
+ #include <asm/pgtable.h>
+@@ -1710,7 +1711,11 @@
+ #ifdef USE_CLASS_DEVICE
+ class_device_create(cmem_class, NULL, MKDEV(cmem_major, 0), NULL, "cmem");
+ #else
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,27)
++ device_create(cmem_class, NULL, MKDEV(cmem_major, 0), NULL, "cmem");
++#else
+ device_create(cmem_class, NULL, MKDEV(cmem_major, 0), "cmem");
++#endif // LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,27)
+ #endif // USE_CLASS_DEVICE
+ #endif // USE_CLASS_SIMPLE
+ #endif // USE_UDEV