blob: 792404948571847f8b9feb6067a7f63bb862e013 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
Ralf Baechle9cfde202007-02-14 21:16:14 +00006 * Copyright (C) 2007 Ralf Baechle (ralf@linux-mips.org)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
Harvey Harrison6510d412008-04-29 01:03:30 -07008#ifndef _ASM_MIPS_UNALIGNED_H
9#define _ASM_MIPS_UNALIGNED_H
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Ralf Baechle9cfde202007-02-14 21:16:14 +000011#include <linux/compiler.h>
Harvey Harrison6510d412008-04-29 01:03:30 -070012#if defined(__MIPSEB__)
13# include <linux/unaligned/be_struct.h>
14# include <linux/unaligned/le_byteshift.h>
15# include <linux/unaligned/generic.h>
16# define get_unaligned __get_unaligned_be
17# define put_unaligned __put_unaligned_be
18#elif defined(__MIPSEL__)
19# include <linux/unaligned/le_struct.h>
20# include <linux/unaligned/be_byteshift.h>
21# include <linux/unaligned/generic.h>
22# define get_unaligned __get_unaligned_le
23# define put_unaligned __put_unaligned_le
24#else
25# error "MIPS, but neither __MIPSEB__, nor __MIPSEL__???"
26#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Harvey Harrison6510d412008-04-29 01:03:30 -070028#endif /* _ASM_MIPS_UNALIGNED_H */