diff options
author | Nathan Rossi <nathan.rossi@xilinx.com> | 2015-02-19 17:54:54 +1000 |
---|---|---|
committer | Nathan Rossi <nathan.rossi@xilinx.com> | 2015-02-19 17:54:54 +1000 |
commit | ad6d76d8d8a839c4ac7a15166e8bbda866f49390 (patch) | |
tree | 54d8c6a27da89c6f3c8de88a8bd916a6347536aa | |
parent | b32e1ccdc6419e0030636e94d2bb05c22e2fc510 (diff) | |
download | meta-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.patch | 25 |
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 @@ | |||
1 | Subject: MicroBlaze Support | ||
2 | |||
3 | Upstream-Status: Not Submitted | ||
4 | --- | ||
5 | diff --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 | --- | ||