Commit fc61708b3afe1bdd05c14b65c0ae2f4ad2a3928a

Authored by Harvey Harrison
Committed by Linus Torvalds
1 parent ae189623b7

h8300: introduce asm/swab.h

Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 3 changed files with 12 additions and 7 deletions Side-by-side Diff

arch/h8300/include/asm/Kbuild
1 1 include include/asm-generic/Kbuild.asm
  2 +unifdef-y += swab.h
arch/h8300/include/asm/byteorder.h
1 1 #ifndef _H8300_BYTEORDER_H
2 2 #define _H8300_BYTEORDER_H
3 3  
4   -#include <asm/types.h>
5   -
6   -#if defined(__GNUC__) && !defined(__STRICT_ANSI__) || defined(__KERNEL__)
7   -# define __BYTEORDER_HAS_U64__
8   -# define __SWAB_64_THRU_32__
9   -#endif
10   -
  4 +#include <asm/swab.h>
11 5 #include <linux/byteorder/big_endian.h>
12 6  
13 7 #endif /* _H8300_BYTEORDER_H */
arch/h8300/include/asm/swab.h
  1 +#ifndef _H8300_SWAB_H
  2 +#define _H8300_SWAB_H
  3 +
  4 +#include <asm/types.h>
  5 +
  6 +#if defined(__GNUC__) && !defined(__STRICT_ANSI__) || defined(__KERNEL__)
  7 +# define __SWAB_64_THRU_32__
  8 +#endif
  9 +
  10 +#endif /* _H8300_SWAB_H */