upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
383 B
25 lines
383 B
#ifndef __ASM_LIBGCC_H
|
|
#define __ASM_LIBGCC_H
|
|
|
|
#include <asm/byteorder.h>
|
|
|
|
typedef int word_type __attribute__ ((mode (__word__)));
|
|
|
|
#ifdef __BIG_ENDIAN
|
|
struct DWstruct {
|
|
int high, low;
|
|
};
|
|
#elif defined(__LITTLE_ENDIAN)
|
|
struct DWstruct {
|
|
int low, high;
|
|
};
|
|
#else
|
|
#error I feel sick.
|
|
#endif
|
|
|
|
typedef union {
|
|
struct DWstruct s;
|
|
long long ll;
|
|
} DWunion;
|
|
|
|
#endif /* __ASM_LIBGCC_H */
|
|
|