Skip to content

Commit

Permalink
Documentation: support glibc versions without htole macros
Browse files Browse the repository at this point in the history
glibc 2.9 introduced the htole<16/32/64> macros, add them to
tools/include to support older versions of glibc.

Reported-by: Andrew Morton <[email protected]>
Signed-off-by: Peter Foley <[email protected]>
Signed-off-by: Randy Dunlap <[email protected]>
Signed-off-by: Jiri Kosina <[email protected]>
  • Loading branch information
pefoley2 authored and Jiri Kosina committed Sep 26, 2014
1 parent 19f94f9 commit 8c2b0dc
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Documentation/arm/SH-Mobile/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ hostprogs-y := vrl4
# Tell kbuild to always build the programs
always := $(hostprogs-y)

HOSTCFLAGS_vrl4.o += -I$(objtree)/usr/include
HOSTCFLAGS_vrl4.o += -I$(objtree)/usr/include -I$(srctree)/tools/include
1 change: 1 addition & 0 deletions Documentation/arm/SH-Mobile/vrl4.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
#include <stdint.h>
#include <stdio.h>
#include <errno.h>
#include <tools/endian.h>

struct hdr {
uint32_t magic1;
Expand Down
2 changes: 1 addition & 1 deletion Documentation/mic/mpssd/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ mpssd-objs := mpssd.o sysfs.o
# Tell kbuild to always build the programs
always := $(hostprogs-y)

HOSTCFLAGS_mpssd.o += -I$(objtree)/usr/include
HOSTCFLAGS_mpssd.o += -I$(objtree)/usr/include -I$(srctree)/tools/include

ifdef DEBUG
HOSTCFLAGS += -DDEBUG=$(DEBUG)
Expand Down
1 change: 1 addition & 0 deletions Documentation/mic/mpssd/mpssd.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
#include "mpssd.h"
#include <linux/mic_ioctl.h>
#include <linux/mic_common.h>
#include <tools/endian.h>

static void init_mic(struct mic_info *mic);

Expand Down
32 changes: 32 additions & 0 deletions tools/include/tools/endian.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#ifndef _TOOLS_ENDIAN_H
#define _TOOLS_ENDIAN_H

#include <byteswap.h>

#if __BYTE_ORDER == __LITTLE_ENDIAN

#ifndef htole16
#define htole16(x) (x)
#endif
#ifndef htole32
#define htole32(x) (x)
#endif
#ifndef htole64
#define htole64(x) (x)
#endif

#else /* __BYTE_ORDER */

#ifndef htole16
#define htole16(x) __bswap_16(x)
#endif
#ifndef htole32
#define htole32(x) __bswap_32(x)
#endif
#ifndef htole64
#define htole64(x) __bswap_64(x)
#endif

#endif

#endif /* _TOOLS_ENDIAN_H */

0 comments on commit 8c2b0dc

Please sign in to comment.