-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 132504 b: refs/heads/master c: 9863a0b h: refs/heads/master v: v3
- Loading branch information
Greg Ungerer
committed
Mar 16, 2009
1 parent
573f911
commit 89cd6e3
Showing
4 changed files
with
27 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: f9847004bf94ba5457738cb5e0f868821864ff50 | ||
refs/heads/master: 9863a0babc2f0d920dfb4ddecf4e5b5342cb986b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 */ |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.