Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 126894
b: refs/heads/master
c: ede6f5a
h: refs/heads/master
v: v3
  • Loading branch information
Linus Torvalds committed Jan 7, 2009
1 parent c938857 commit a4d5c02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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: 637b180c23313f2964e0ef20f1ee375203866968
refs/heads/master: ede6f5aea054d3fb67c78857f7abdee602302043
2 changes: 1 addition & 1 deletion trunk/include/linux/swab.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ static inline __attribute_const__ __u64 __fswab64(__u64 val)
#elif defined(__SWAB_64_THRU_32__)
__u32 h = val >> 32;
__u32 l = val & ((1ULL << 32) - 1);
return (((__u64)___swab32(l)) << 32) | ((__u64)(___swab32(h)));
return (((__u64)__fswab32(l)) << 32) | ((__u64)(__fswab32(h)));
#else
return ___constant_swab64(val);
#endif
Expand Down

0 comments on commit a4d5c02

Please sign in to comment.