Commit 919594765dcf803017b2227425c1b27b5ea537be

Authored by Harvey Harrison
Committed by Linus Torvalds
1 parent f15d411ad9

frv: 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

include/asm-frv/Kbuild
... ... @@ -3,4 +3,5 @@
3 3 header-y += registers.h
4 4  
5 5 unifdef-y += termios.h
  6 +unifdef-y += swab.h
include/asm-frv/byteorder.h
1 1 #ifndef _ASM_BYTEORDER_H
2 2 #define _ASM_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 /* _ASM_BYTEORDER_H */
include/asm-frv/swab.h
  1 +#ifndef _ASM_SWAB_H
  2 +#define _ASM_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 /* _ASM_SWAB_H */