Skip to content

Commit

Permalink
m68k: merge the non-MMU and MMU versions of swab.h
Browse files Browse the repository at this point in the history
It is trivial to merge the non-MMU and MMU versions of swab.h.
Without a single file "make headers_install" is broken for m68k
(since each of the sub-varients of swab.h are not installed).

Signed-off-by: Greg Ungerer <gerg@uclinux.org>
  • Loading branch information
Greg Ungerer committed Mar 16, 2009
1 parent f984700 commit 9863a0b
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 44 deletions.
30 changes: 26 additions & 4 deletions arch/m68k/include/asm/swab.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
#ifdef __uClinux__
#include "swab_no.h"
#else
#include "swab_mm.h"
#ifndef _M68K_SWAB_H
#define _M68K_SWAB_H

#include <asm/types.h>
#include <linux/compiler.h>

#define __SWAB_64_THRU_32__

#if defined (__mcfisaaplus__) || defined (__mcfisac__)
static inline __attribute_const__ __u32 __arch_swab32(__u32 val)
{
__asm__("byterev %0" : "=d" (val) : "0" (val));
return val;
}

#define __arch_swab32 __arch_swab32
#elif !defined(__uClinux__)

static inline __attribute_const__ __u32 __arch_swab32(__u32 val)
{
__asm__("rolw #8,%0; swap %0; rolw #8,%0" : "=d" (val) : "0" (val));
return val;
}
#define __arch_swab32 __arch_swab32
#endif

#endif /* _M68K_SWAB_H */
16 changes: 0 additions & 16 deletions arch/m68k/include/asm/swab_mm.h

This file was deleted.

24 changes: 0 additions & 24 deletions arch/m68k/include/asm/swab_no.h

This file was deleted.

0 comments on commit 9863a0b

Please sign in to comment.