diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
commit | 709c4d66e0b107ca606941b988bad717c0b45d9b (patch) | |
tree | 37ee08b1eb308f3b2b6426d5793545c38396b838 /packages/dsplink/files/sdma-class-device-and-includes-fix.patch | |
parent | fa6cd5a3b993f16c27de4ff82b42684516d433ba (diff) |
rename packages/ to recipes/ per earlier agreement
See links below for more details:
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Acked-by: Mike Westerhof <mwester@dls.net>
Acked-by: Philip Balister <philip@balister.org>
Acked-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Marcin Juszkiewicz <hrw@openembedded.org>
Acked-by: Koen Kooi <koen@openembedded.org>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'packages/dsplink/files/sdma-class-device-and-includes-fix.patch')
-rw-r--r-- | packages/dsplink/files/sdma-class-device-and-includes-fix.patch | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/packages/dsplink/files/sdma-class-device-and-includes-fix.patch b/packages/dsplink/files/sdma-class-device-and-includes-fix.patch deleted file mode 100644 index 2dcc7a3b7e..0000000000 --- a/packages/dsplink/files/sdma-class-device-and-includes-fix.patch +++ /dev/null @@ -1,59 +0,0 @@ -diff -uNr codec_engine_2_21/cetools/packages/ti/sdo/linuxutils/sdma/src/module/sdmak.c codec_engine_2_21_fix/cetools/packages/ti/sdo/linuxutils/sdma/src/module/sdmak.c ---- codec_engine_2_21/cetools/packages/ti/sdo/linuxutils/sdma/src/module/sdmak.c 2009-02-20 14:49:41.000000000 +0000 -+++ codec_engine_2_21_fix/cetools/packages/ti/sdo/linuxutils/sdma/src/module/sdmak.c 2009-02-20 15:07:59.000000000 +0000 -@@ -17,6 +17,7 @@ - /* - * sdmak.c - */ -+#include <linux/version.h> - #include <linux/kernel.h> - #include <linux/sched.h> - #include <linux/module.h> -@@ -32,14 +33,20 @@ - #include <linux/irq.h> - #include <linux/highmem.h> - #include <linux/pagemap.h> -- --#include <asm/arch/dma.h> - #include <asm/uaccess.h> - #include <asm/system.h> -+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,26) -+#include <asm/arch/dma.h> - #include <asm/hardware.h> - #include <asm/dma.h> --#include <asm/io.h> - #include <asm/arch/tc.h> -+#else -+#include <asm/dma.h> -+#include <mach/hardware.h> -+#include <mach/dma.h> -+#include <mach/tc.h> -+#endif -+#include <asm/io.h> - - #include "../interface/sdma.h" - -@@ -229,7 +236,11 @@ - __D("sdma registered major = %d\n", major); - - dma_class = class_create(THIS_MODULE, "sdma"); -+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,26) - class_device_create(dma_class, NULL, MKDEV(major, 0), NULL, "sdma"); -+#else -+ device_create(dma_class, NULL, MKDEV(major, 0), NULL, "sdma"); -+#endif - - for (channel = 0; channel < SDMA_NUMCHANNELS; channel++) { - channels[channel].owner = NULL; -@@ -248,7 +259,11 @@ - omap_free_dma(channel); - } - } -+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,26) - class_device_destroy(dma_class, MKDEV(major, 0)); -+#else -+ device_destroy(dma_class, MKDEV(major, 0)); -+#endif - class_destroy(dma_class); - unregister_chrdev(major, "sdma"); - |