Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 118233
b: refs/heads/master
c: 398cf93
h: refs/heads/master
i:
  118231: e566523
v: v3
  • Loading branch information
Harvey Harrison authored and David S. Miller committed Oct 29, 2008
1 parent 10403ce commit 2a93d88
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 15 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 12a9ee3cce256ae0f178d604f2c8764fb2942cfe
refs/heads/master: 398cf93a394a6f2e42b8e61b1071fc32ecf18647
22 changes: 8 additions & 14 deletions trunk/arch/sparc/include/asm/byteorder.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@
#include <asm/types.h>
#include <asm/asi.h>

#ifdef __GNUC__
#define __BIG_ENDIAN

#ifdef CONFIG_SPARC32
#define __SWAB_64_THRU_32__
#endif

#ifdef CONFIG_SPARC64

static inline __u16 ___arch__swab16p(const __u16 *addr)
static inline __u16 __arch_swab16p(const __u16 *addr)
{
__u16 ret;

Expand All @@ -21,8 +20,9 @@ static inline __u16 ___arch__swab16p(const __u16 *addr)
: "r" (addr), "i" (ASI_PL));
return ret;
}
#define __arch_swab16p __arch_swab16p

static inline __u32 ___arch__swab32p(const __u32 *addr)
static inline __u32 __arch_swab32p(const __u32 *addr)
{
__u32 ret;

Expand All @@ -31,8 +31,9 @@ static inline __u32 ___arch__swab32p(const __u32 *addr)
: "r" (addr), "i" (ASI_PL));
return ret;
}
#define __arch_swab32p __arch_swab32p

static inline __u64 ___arch__swab64p(const __u64 *addr)
static inline __u64 __arch_swab64p(const __u64 *addr)
{
__u64 ret;

Expand All @@ -41,17 +42,10 @@ static inline __u64 ___arch__swab64p(const __u64 *addr)
: "r" (addr), "i" (ASI_PL));
return ret;
}

#define __arch__swab16p(x) ___arch__swab16p(x)
#define __arch__swab32p(x) ___arch__swab32p(x)
#define __arch__swab64p(x) ___arch__swab64p(x)
#define __arch_swab64p __arch_swab64p

#endif /* CONFIG_SPARC64 */

#define __BYTEORDER_HAS_U64__

#endif

#include <linux/byteorder/big_endian.h>
#include <linux/byteorder.h>

#endif /* _SPARC_BYTEORDER_H */

0 comments on commit 2a93d88

Please sign in to comment.