From 649b44a943f5a2cca45b346b903e6cdee7d5ed21 Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Fri, 12 Jun 2009 13:03:42 +0200 Subject: dsplink: move dir to 'dvsdk' to make merging the TI OE trees easier --- .../files/sdma-class-device-and-includes-fix.patch | 59 ---------------------- 1 file changed, 59 deletions(-) delete mode 100644 recipes/dsplink/files/sdma-class-device-and-includes-fix.patch (limited to 'recipes/dsplink/files/sdma-class-device-and-includes-fix.patch') diff --git a/recipes/dsplink/files/sdma-class-device-and-includes-fix.patch b/recipes/dsplink/files/sdma-class-device-and-includes-fix.patch deleted file mode 100644 index 2dcc7a3b7e..0000000000 --- a/recipes/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 - #include - #include - #include -@@ -32,14 +33,20 @@ - #include - #include - #include -- --#include - #include - #include -+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,26) -+#include - #include - #include --#include - #include -+#else -+#include -+#include -+#include -+#include -+#endif -+#include - - #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"); - -- cgit v1.2.3