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.
17 lines
383 B
17 lines
383 B
16 years ago
|
#ifndef _ASM_POWERPC_UNALIGNED_H
|
||
|
#define _ASM_POWERPC_UNALIGNED_H
|
||
|
|
||
|
#ifdef __KERNEL__
|
||
|
|
||
|
/*
|
||
|
* The PowerPC can do unaligned accesses itself in big endian mode.
|
||
|
*/
|
||
|
#include <linux/unaligned/access_ok.h>
|
||
|
#include <linux/unaligned/generic.h>
|
||
|
|
||
|
#define get_unaligned __get_unaligned_be
|
||
|
#define put_unaligned __put_unaligned_be
|
||
|
|
||
|
#endif /* __KERNEL__ */
|
||
|
#endif /* _ASM_POWERPC_UNALIGNED_H */
|