summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Rossi <nathan.rossi@xilinx.com>2015-02-19 17:54:54 +1000
committerNathan Rossi <nathan.rossi@xilinx.com>2015-02-19 17:54:54 +1000
commitad6d76d8d8a839c4ac7a15166e8bbda866f49390 (patch)
tree54d8c6a27da89c6f3c8de88a8bd916a6347536aa
parentb32e1ccdc6419e0030636e94d2bb05c22e2fc510 (diff)
downloadmeta-xilinx-ad6d76d8d8a839c4ac7a15166e8bbda866f49390.tar.gz
libaio: Remove patch, bbappend has already been removed
Signed-off-by: Nathan Rossi <nathan.rossi@xilinx.com>
-rw-r--r--recipes-extended/libaio/files/microblaze.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/recipes-extended/libaio/files/microblaze.patch b/recipes-extended/libaio/files/microblaze.patch
deleted file mode 100644
index 9dc3ade6..00000000
--- a/recipes-extended/libaio/files/microblaze.patch
+++ /dev/null
@@ -1,25 +0,0 @@
1Subject: MicroBlaze Support
2
3Upstream-Status: Not Submitted
4---
5diff --git a/src/libaio.h b/src/libaio.h
6--- a/src/libaio.h
7+++ b/src/libaio.h
8@@ -117,6 +117,16 @@
9 #define PADDEDptr(x, y) x
10 #define PADDEDul(x, y) unsigned long x
11 # endif
12+#elif defined(__microblaze__)
13+# if defined (__BIG_ENDIAN__) /* big endian, 32 bits */
14+#define PADDED(x, y) unsigned y; x
15+#define PADDEDptr(x, y) unsigned y; x
16+#define PADDEDul(x, y) unsigned y; unsigned long x
17+# else /* little endian, 32 bits */
18+#define PADDED(x, y) x; unsigned y
19+#define PADDEDptr(x, y) x; unsigned y
20+#define PADDEDul(x, y) unsigned long x; unsigned y
21+# endif
22 #else
23 #error endian?
24 #endif
25---