diff options
| author | Ralf Baechle <ralf@linux-mips.org> | 2009-09-29 04:14:17 -0400 |
|---|---|---|
| committer | Ralf Baechle <ralf@linux-mips.org> | 2009-09-30 15:47:02 -0400 |
| commit | da3a7a2b9f9776f2d44ed9a4b40eabeb17c6e886 (patch) | |
| tree | 0a62ee4ea8baa9a9311068281928514204f865cf | |
| parent | 1bbfc20d0161cd94b1b8111566be2fa41b41b608 (diff) | |
MIPS: Avoid spurious make includecheck message
arch/mips/include/asm/unaligned.h: linux/unaligned/generic.h is included more than once.
Entirely legitimate but just noise.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
| -rw-r--r-- | arch/mips/include/asm/unaligned.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/include/asm/unaligned.h b/arch/mips/include/asm/unaligned.h index 792404948571..42f66c311473 100644 --- a/arch/mips/include/asm/unaligned.h +++ b/arch/mips/include/asm/unaligned.h | |||
| @@ -12,17 +12,17 @@ | |||
| 12 | #if defined(__MIPSEB__) | 12 | #if defined(__MIPSEB__) |
| 13 | # include <linux/unaligned/be_struct.h> | 13 | # include <linux/unaligned/be_struct.h> |
| 14 | # include <linux/unaligned/le_byteshift.h> | 14 | # include <linux/unaligned/le_byteshift.h> |
| 15 | # include <linux/unaligned/generic.h> | ||
| 16 | # define get_unaligned __get_unaligned_be | 15 | # define get_unaligned __get_unaligned_be |
| 17 | # define put_unaligned __put_unaligned_be | 16 | # define put_unaligned __put_unaligned_be |
| 18 | #elif defined(__MIPSEL__) | 17 | #elif defined(__MIPSEL__) |
| 19 | # include <linux/unaligned/le_struct.h> | 18 | # include <linux/unaligned/le_struct.h> |
| 20 | # include <linux/unaligned/be_byteshift.h> | 19 | # include <linux/unaligned/be_byteshift.h> |
| 21 | # include <linux/unaligned/generic.h> | ||
| 22 | # define get_unaligned __get_unaligned_le | 20 | # define get_unaligned __get_unaligned_le |
| 23 | # define put_unaligned __put_unaligned_le | 21 | # define put_unaligned __put_unaligned_le |
| 24 | #else | 22 | #else |
| 25 | # error "MIPS, but neither __MIPSEB__, nor __MIPSEL__???" | 23 | # error "MIPS, but neither __MIPSEB__, nor __MIPSEL__???" |
| 26 | #endif | 24 | #endif |
| 27 | 25 | ||
| 26 | # include <linux/unaligned/generic.h> | ||
| 27 | |||
| 28 | #endif /* _ASM_MIPS_UNALIGNED_H */ | 28 | #endif /* _ASM_MIPS_UNALIGNED_H */ |
