~ubuntu-branches/ubuntu/maverick/u-boot-omap3/maverick

« back to all changes in this revision

Viewing changes to include/asm-mips/unaligned.h

  • Committer: Bazaar Package Importer
  • Author(s): Oliver Grawert
  • Date: 2010-03-22 15:06:23 UTC
  • Revision ID: james.westby@ubuntu.com-20100322150623-i21g8rgiyl5dohag
Tags: upstream-2010.3git20100315
ImportĀ upstreamĀ versionĀ 2010.3git20100315

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 *
 
6
 * Copyright (C) 2007 Ralf Baechle (ralf@linux-mips.org)
 
7
 */
 
8
#ifndef _ASM_MIPS_UNALIGNED_H
 
9
#define _ASM_MIPS_UNALIGNED_H
 
10
 
 
11
#include <compiler.h>
 
12
#if defined(__MIPSEB__)
 
13
#define get_unaligned   __get_unaligned_be
 
14
#define put_unaligned   __put_unaligned_be
 
15
#elif defined(__MIPSEL__)
 
16
#define get_unaligned   __get_unaligned_le
 
17
#define put_unaligned   __put_unaligned_le
 
18
#else
 
19
#error "MIPS, but neither __MIPSEB__, nor __MIPSEL__???"
 
20
#endif
 
21
 
 
22
#include <linux/unaligned/le_byteshift.h>
 
23
#include <linux/unaligned/be_byteshift.h>
 
24
#include <linux/unaligned/generic.h>
 
25
 
 
26
#endif /* _ASM_MIPS_UNALIGNED_H */