Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 3883
b: refs/heads/master
c: 05133fc
h: refs/heads/master
i:
  3881: b270287
  3879: 40f974e
v: v3
  • Loading branch information
Andrew Morton authored and Linus Torvalds committed Jun 29, 2005
1 parent 49003f9 commit d9ee683
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 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: b79646e3dd51b389b2a570b454f8e2fb7a613e37
refs/heads/master: 05133fc498e788e1c1ca4e906f9e05d9779fd63b
17 changes: 10 additions & 7 deletions trunk/include/linux/byteorder/swabb.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,29 +92,32 @@
#endif /* OPTIMIZE */


static __inline__ __const__ __u32 __fswahw32(__u32 x)
static inline __u32 __fswahw32(__u32 x)
{
return __arch__swahw32(x);
}
static __inline__ __u32 __swahw32p(__u32 *x)

static inline __u32 __swahw32p(__u32 *x)
{
return __arch__swahw32p(x);
}
static __inline__ void __swahw32s(__u32 *addr)

static inline void __swahw32s(__u32 *addr)
{
__arch__swahw32s(addr);
}


static __inline__ __const__ __u32 __fswahb32(__u32 x)
static inline __u32 __fswahb32(__u32 x)
{
return __arch__swahb32(x);
}
static __inline__ __u32 __swahb32p(__u32 *x)

static inline __u32 __swahb32p(__u32 *x)
{
return __arch__swahb32p(x);
}
static __inline__ void __swahb32s(__u32 *addr)

static inline void __swahb32s(__u32 *addr)
{
__arch__swahb32s(addr);
}
Expand Down

0 comments on commit d9ee683

Please sign in to comment.