2020-02-03 17:25:40 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2009-03-27 21:25:30 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 Michal Simek <monstr@monstr.eu>
|
|
|
|
* Copyright (C) 2006 Atmark Techno, Inc.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ASM_MICROBLAZE_UNALIGNED_H
|
|
|
|
#define _ASM_MICROBLAZE_UNALIGNED_H
|
|
|
|
|
|
|
|
# ifdef __KERNEL__
|
|
|
|
|
2010-09-28 14:04:14 +08:00
|
|
|
# ifdef __MICROBLAZEEL__
|
2011-02-18 21:29:20 +08:00
|
|
|
# include <linux/unaligned/le_struct.h>
|
|
|
|
# include <linux/unaligned/be_byteshift.h>
|
2010-09-28 14:04:14 +08:00
|
|
|
# define get_unaligned __get_unaligned_le
|
|
|
|
# define put_unaligned __put_unaligned_le
|
|
|
|
# else
|
2011-02-18 21:29:20 +08:00
|
|
|
# include <linux/unaligned/be_struct.h>
|
|
|
|
# include <linux/unaligned/le_byteshift.h>
|
2010-09-28 14:04:14 +08:00
|
|
|
# define get_unaligned __get_unaligned_be
|
|
|
|
# define put_unaligned __put_unaligned_be
|
|
|
|
# endif
|
2009-03-27 21:25:30 +08:00
|
|
|
|
2011-02-18 21:29:20 +08:00
|
|
|
# include <linux/unaligned/generic.h>
|
|
|
|
|
2009-03-27 21:25:30 +08:00
|
|
|
# endif /* __KERNEL__ */
|
|
|
|
#endif /* _ASM_MICROBLAZE_UNALIGNED_H */
|