repo: https://github.com/u-boot/u-boot commit: d80bb749fab53da72c4a0e09b8c2d2aaa3103c91 Change-Id: Ie6434426e1ec15bc08bb1832798e371f3fd5fb29
16 lines
335 B
C
16 lines
335 B
C
#ifndef _ASM_M68K_UNALIGNED_H
|
|
#define _ASM_M68K_UNALIGNED_H
|
|
|
|
#ifdef CONFIG_COLDFIRE
|
|
#include <linux/unaligned/be_byteshift.h>
|
|
#else
|
|
#include <linux/unaligned/access_ok.h>
|
|
#endif
|
|
|
|
#include <linux/unaligned/generic.h>
|
|
|
|
#define get_unaligned __get_unaligned_be
|
|
#define put_unaligned __put_unaligned_be
|
|
|
|
#endif /* _ASM_M68K_UNALIGNED_H */
|