Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 95304
b: refs/heads/master
c: 969a19f
h: refs/heads/master
v: v3
  • Loading branch information
Robert P. J. Day authored and Linus Torvalds committed Apr 30, 2008
1 parent 700f98e commit ba89802
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 13 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: ae50884f66fc93aa713feade8f87c03471241275
refs/heads/master: 969a19f1c405a8e9d15ceb9e75e3f4a321aaf56f
6 changes: 2 additions & 4 deletions trunk/include/linux/byteorder/Kbuild
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
header-y += big_endian.h
header-y += little_endian.h

unifdef-y += generic.h
unifdef-y += big_endian.h
unifdef-y += little_endian.h
unifdef-y += swab.h
2 changes: 2 additions & 0 deletions trunk/include/linux/byteorder/big_endian.h
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ static inline __u16 __be16_to_cpup(const __be16 *p)
#define __cpu_to_be16s(x) do {} while (0)
#define __be16_to_cpus(x) do {} while (0)

#ifdef __KERNEL__
#include <linux/byteorder/generic.h>
#endif

#endif /* _LINUX_BYTEORDER_BIG_ENDIAN_H */
8 changes: 0 additions & 8 deletions trunk/include/linux/byteorder/generic.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,6 @@
*
*/


#if defined(__KERNEL__)
/*
* inside the kernel, we can use nicknames;
* outside of it, we must avoid POSIX namespace pollution...
*/
#define cpu_to_le64 __cpu_to_le64
#define le64_to_cpu __le64_to_cpu
#define cpu_to_le32 __cpu_to_le32
Expand Down Expand Up @@ -176,6 +170,4 @@ static inline void be64_add_cpu(__be64 *var, u64 val)
*var = cpu_to_be64(be64_to_cpu(*var) + val);
}

#endif /* KERNEL */

#endif /* _LINUX_BYTEORDER_GENERIC_H */
2 changes: 2 additions & 0 deletions trunk/include/linux/byteorder/little_endian.h
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ static inline __u16 __be16_to_cpup(const __be16 *p)
#define __cpu_to_be16s(x) __swab16s((x))
#define __be16_to_cpus(x) __swab16s((x))

#ifdef __KERNEL__
#include <linux/byteorder/generic.h>
#endif

#endif /* _LINUX_BYTEORDER_LITTLE_ENDIAN_H */

0 comments on commit ba89802

Please sign in to comment.