]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/mips/include/asm/unaligned.h
HID: usbhid: Add HID_QUIRK_NOGET for Aten CS-1758 KVM switch
[mirror_ubuntu-artful-kernel.git] / arch / mips / include / asm / unaligned.h
CommitLineData
1da177e4
LT
1/*
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 *
9cfde202 6 * Copyright (C) 2007 Ralf Baechle (ralf@linux-mips.org)
1da177e4 7 */
6510d419
HH
8#ifndef _ASM_MIPS_UNALIGNED_H
9#define _ASM_MIPS_UNALIGNED_H
1da177e4 10
9cfde202 11#include <linux/compiler.h>
6510d419
HH
12#if defined(__MIPSEB__)
13# include <linux/unaligned/be_struct.h>
14# include <linux/unaligned/le_byteshift.h>
6510d419
HH
15# define get_unaligned __get_unaligned_be
16# define put_unaligned __put_unaligned_be
17#elif defined(__MIPSEL__)
18# include <linux/unaligned/le_struct.h>
19# include <linux/unaligned/be_byteshift.h>
6510d419
HH
20# define get_unaligned __get_unaligned_le
21# define put_unaligned __put_unaligned_le
22#else
23# error "MIPS, but neither __MIPSEB__, nor __MIPSEL__???"
24#endif
1da177e4 25
da3a7a2b
RB
26# include <linux/unaligned/generic.h>
27
6510d419 28#endif /* _ASM_MIPS_UNALIGNED_H */