diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2009-01-21 02:50:51 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-26 19:38:43 +0100 |
commit | 6aeea60aee945449c93d9aa70638deeb5c4c5439 (patch) | |
tree | 232b3cf562646515e2a4ada2f28ed919d7cc5aa7 /arch/m68k/include/asm/swab.h | |
parent | Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg... (diff) | |
download | linux-6aeea60aee945449c93d9aa70638deeb5c4c5439.tar.xz linux-6aeea60aee945449c93d9aa70638deeb5c4c5439.zip |
m68k{nommu}: fixups after the header move
swab.h seems to have been missed during the header merge.
Add conditionals similar to byteorder.h and remove the
now unnecessary byteorder_no/mm.h
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/m68k/include/asm/swab.h')
-rw-r--r-- | arch/m68k/include/asm/swab.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/m68k/include/asm/swab.h b/arch/m68k/include/asm/swab.h index e69de29bb2d1..7d7dde1c73ec 100644 --- a/arch/m68k/include/asm/swab.h +++ b/arch/m68k/include/asm/swab.h @@ -0,0 +1,5 @@ +#ifdef __uClinux__ +#include "swab_no.h" +#else +#include "swab_mm.h" +#endif |