diff options
author | David Daney <ddaney@caviumnetworks.com> | 2008-12-17 18:19:18 -0800 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-12-22 08:54:47 +0000 |
commit | 08d9d1c4d44ce43856da048cb0737ef769b61e9a (patch) | |
tree | 1969f4d4521301bd8680b0597ba8882589c314b3 /arch | |
parent | 3d44cc3e01ee1b40317f79ed54324e25c4f848df (diff) | |
download | kernel_samsung_tuna-08d9d1c4d44ce43856da048cb0737ef769b61e9a.zip kernel_samsung_tuna-08d9d1c4d44ce43856da048cb0737ef769b61e9a.tar.gz kernel_samsung_tuna-08d9d1c4d44ce43856da048cb0737ef769b61e9a.tar.bz2 |
MIPS: Fix preprocessor warnings flaged by GCC 4.4
Signed-off-by: David Daney <ddaney@caviumnetworks.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/include/asm/elf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/include/asm/elf.h b/arch/mips/include/asm/elf.h index a8eac16..d58f128 100644 --- a/arch/mips/include/asm/elf.h +++ b/arch/mips/include/asm/elf.h @@ -232,7 +232,7 @@ typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG]; */ #ifdef __MIPSEB__ #define ELF_DATA ELFDATA2MSB -#elif __MIPSEL__ +#elif defined(__MIPSEL__) #define ELF_DATA ELFDATA2LSB #endif #define ELF_ARCH EM_MIPS |