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>

authored by Harvey Harrison and committed by Linus Torvalds 6aeea60a ac3d266b

+11 -17
+6 -5
arch/m68k/include/asm/byteorder.h
··· 1 - #ifdef __uClinux__ 2 - #include "byteorder_no.h" 3 - #else 4 - #include "byteorder_mm.h" 5 - #endif 1 + #ifndef _M68K_BYTEORDER_H 2 + #define _M68K_BYTEORDER_H 3 + 4 + #include <linux/byteorder/big_endian.h> 5 + 6 + #endif /* _M68K_BYTEORDER_H */
-6
arch/m68k/include/asm/byteorder_mm.h
··· 1 - #ifndef _M68K_BYTEORDER_H 2 - #define _M68K_BYTEORDER_H 3 - 4 - #include <linux/byteorder/big_endian.h> 5 - 6 - #endif /* _M68K_BYTEORDER_H */
-6
arch/m68k/include/asm/byteorder_no.h
··· 1 - #ifndef _M68KNOMMU_BYTEORDER_H 2 - #define _M68KNOMMU_BYTEORDER_H 3 - 4 - #include <linux/byteorder/big_endian.h> 5 - 6 - #endif /* _M68KNOMMU_BYTEORDER_H */
+5
arch/m68k/include/asm/swab.h
··· 1 + #ifdef __uClinux__ 2 + #include "swab_no.h" 3 + #else 4 + #include "swab_mm.h" 5 + #endif